다음을 통해 공유


IndentedTextWriter.Write 메서드

정의

지정된 문자열을 텍스트 스트림에 씁니다.

오버로드

Write(String, Object, Object)

지정된 것과 동일한 의미 체계를 사용하여 서식이 지정된 문자열을 작성합니다.

Write(Char[], Int32, Int32)

문자의 하위 배열을 텍스트 스트림에 씁니다.

Write(String, ReadOnlySpan<Object>)

지정된 것과 동일한 의미 체계를 사용하여 서식이 지정된 문자열을 작성합니다.

Write(String, Object[])

지정된 것과 동일한 의미 체계를 사용하여 서식이 지정된 문자열을 작성합니다.

Write(String, Object)

지정된 것과 동일한 의미 체계를 사용하여 서식이 지정된 문자열을 작성합니다.

Write(String)

지정된 문자열을 텍스트 스트림에 씁니다.

Write(Single)

Single의 텍스트 표현을 텍스트 스트림에 씁니다.

Write(Boolean)

부울 값의 텍스트 표현을 텍스트 스트림에 씁니다.

Write(Int64)

8 바이트 정수의 텍스트 표현을 텍스트 스트림에 씁니다.

Write(Int32)

정수의 텍스트 표현을 텍스트 스트림에 씁니다.

Write(Double)

Double의 텍스트 표현을 텍스트 스트림에 씁니다.

Write(Char[])

텍스트 스트림에 문자 배열을 씁니다.

Write(Char)

텍스트 스트림에 문자를 씁니다.

Write(Object)

개체의 텍스트 표현을 텍스트 스트림에 씁니다.

Write(String, Object, Object)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

지정된 것과 동일한 의미 체계를 사용하여 서식이 지정된 문자열을 작성합니다.

public:
 override void Write(System::String ^ format, System::Object ^ arg0, System::Object ^ arg1);
public override void Write (string format, object? arg0, object? arg1);
public override void Write (string format, object arg0, object arg1);
override this.Write : string * obj * obj -> unit
Public Overrides Sub Write (format As String, arg0 As Object, arg1 As Object)

매개 변수

format
String

사용할 서식 문자열입니다.

arg0
Object

서식이 지정된 문자열에 쓸 첫 번째 개체입니다.

arg1
Object

형식이 지정된 문자열에 쓸 두 번째 개체입니다.

적용 대상

Write(Char[], Int32, Int32)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

문자의 하위 배열을 텍스트 스트림에 씁니다.

public:
 override void Write(cli::array <char> ^ buffer, int index, int count);
public override void Write (char[] buffer, int index, int count);
override this.Write : char[] * int * int -> unit
Public Overrides Sub Write (buffer As Char(), index As Integer, count As Integer)

매개 변수

buffer
Char[]

데이터를 쓸 문자 배열입니다.

index
Int32

버퍼에서 인덱스 시작

count
Int32

쓸 문자 수입니다.

적용 대상

Write(String, ReadOnlySpan<Object>)

지정된 것과 동일한 의미 체계를 사용하여 서식이 지정된 문자열을 작성합니다.

public:
 override void Write(System::String ^ format, ReadOnlySpan<System::Object ^> arg);
public override void Write (string format, scoped ReadOnlySpan<object?> arg);
override this.Write : string * ReadOnlySpan<obj> -> unit
Public Overrides Sub Write (format As String, arg As ReadOnlySpan(Of Object))

매개 변수

format
String

사용할 서식 문자열입니다.

arg
ReadOnlySpan<Object>

출력할 인수 범위입니다.

적용 대상

Write(String, Object[])

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

지정된 것과 동일한 의미 체계를 사용하여 서식이 지정된 문자열을 작성합니다.

public:
 override void Write(System::String ^ format, ... cli::array <System::Object ^> ^ arg);
public override void Write (string format, params object?[] arg);
public override void Write (string format, params object[] arg);
override this.Write : string * obj[] -> unit
Public Overrides Sub Write (format As String, ParamArray arg As Object())

매개 변수

format
String

사용할 서식 문자열입니다.

arg
Object[]

출력할 인수 배열입니다.

적용 대상

Write(String, Object)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

지정된 것과 동일한 의미 체계를 사용하여 서식이 지정된 문자열을 작성합니다.

public:
 override void Write(System::String ^ format, System::Object ^ arg0);
public override void Write (string format, object? arg0);
public override void Write (string format, object arg0);
override this.Write : string * obj -> unit
Public Overrides Sub Write (format As String, arg0 As Object)

매개 변수

format
String

서식 문자열입니다.

arg0
Object

서식이 지정된 문자열에 쓸 개체입니다.

적용 대상

Write(String)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

지정된 문자열을 텍스트 스트림에 씁니다.

public:
 override void Write(System::String ^ s);
public override void Write (string? s);
public override void Write (string s);
override this.Write : string -> unit
Public Overrides Sub Write (s As String)

매개 변수

s
String

쓸 문자열입니다.

적용 대상

Write(Single)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

Single의 텍스트 표현을 텍스트 스트림에 씁니다.

public:
 override void Write(float value);
public override void Write (float value);
override this.Write : single -> unit
Public Overrides Sub Write (value As Single)

매개 변수

value
Single

single.

적용 대상

Write(Boolean)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

부울 값의 텍스트 표현을 텍스트 스트림에 씁니다.

public:
 override void Write(bool value);
public override void Write (bool value);
override this.Write : bool -> unit
Public Overrides Sub Write (value As Boolean)

매개 변수

value
Boolean

쓸 부울 값입니다.

적용 대상

Write(Int64)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

8 바이트 정수의 텍스트 표현을 텍스트 스트림에 씁니다.

public:
 override void Write(long value);
public override void Write (long value);
override this.Write : int64 -> unit
Public Overrides Sub Write (value As Long)

매개 변수

value
Int64

쓸 8 바이트 정수입니다.

적용 대상

Write(Int32)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

정수의 텍스트 표현을 텍스트 스트림에 씁니다.

public:
 override void Write(int value);
public override void Write (int value);
override this.Write : int -> unit
Public Overrides Sub Write (value As Integer)

매개 변수

value
Int32

쓸 정수입니다.

적용 대상

Write(Double)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

Double의 텍스트 표현을 텍스트 스트림에 씁니다.

public:
 override void Write(double value);
public override void Write (double value);
override this.Write : double -> unit
Public Overrides Sub Write (value As Double)

매개 변수

value
Double

double.

적용 대상

Write(Char[])

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

텍스트 스트림에 문자 배열을 씁니다.

public:
 override void Write(cli::array <char> ^ buffer);
public override void Write (char[]? buffer);
public override void Write (char[] buffer);
override this.Write : char[] -> unit
Public Overrides Sub Write (buffer As Char())

매개 변수

buffer
Char[]

쓸 문자 배열입니다.

적용 대상

Write(Char)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

텍스트 스트림에 문자를 씁니다.

public:
 override void Write(char value);
public override void Write (char value);
override this.Write : char -> unit
Public Overrides Sub Write (value As Char)

매개 변수

value
Char

쓸 문자입니다.

적용 대상

Write(Object)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

개체의 텍스트 표현을 텍스트 스트림에 씁니다.

public:
 override void Write(System::Object ^ value);
public override void Write (object? value);
public override void Write (object value);
override this.Write : obj -> unit
Public Overrides Sub Write (value As Object)

매개 변수

value
Object

쓸 개체입니다.

적용 대상