IndentedTextWriter.WriteLine 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 문자열과 줄 종결자를 텍스트 스트림에 씁니다.
오버로드
WriteLine(String, Object, Object) |
지정한 것과 동일한 의미 체계를 사용하여 형식이 지정된 문자열과 줄 종결자를 씁니다. |
WriteLine(Char[], Int32, Int32) |
문자의 하위 배열과 줄 종결자를 텍스트 스트림에 씁니다. |
WriteLine(String, ReadOnlySpan<Object>) |
지정한 것과 동일한 의미 체계를 사용하여 형식이 지정된 문자열과 줄 종결자를 씁니다. |
WriteLine(String, Object[]) |
지정한 것과 동일한 의미 체계를 사용하여 형식이 지정된 문자열과 줄 종결자를 씁니다. |
WriteLine(String, Object) |
지정한 것과 동일한 의미 체계를 사용하여 형식이 지정된 문자열과 줄 종결자를 씁니다. |
WriteLine(String) |
지정된 문자열과 줄 종결자를 텍스트 스트림에 씁니다. |
WriteLine(Single) |
단일 텍스트 표현과 줄 종결자를 텍스트 스트림에 씁니다. |
WriteLine(UInt32) |
UInt32의 텍스트 표현과 줄 종결자를 텍스트 스트림에 씁니다. |
WriteLine(Int64) |
8 바이트 정수의 텍스트 표현과 줄 종결자를 텍스트 스트림에 씁니다. |
WriteLine(Int32) |
정수의 텍스트 표현과 줄 종결자를 텍스트 스트림에 씁니다. |
WriteLine(Double) |
Double의 텍스트 표현과 줄 종결자를 텍스트 스트림에 씁니다. |
WriteLine(Char[]) |
문자 배열과 줄 종결자를 텍스트 스트림에 씁니다. |
WriteLine(Char) |
문자 다음에 줄 종결자를 텍스트 스트림에 씁니다. |
WriteLine(Boolean) |
부울의 텍스트 표현과 줄 종결자를 텍스트 스트림에 씁니다. |
WriteLine() |
줄 종결자를 씁니다. |
WriteLine(Object) |
개체의 텍스트 표현과 줄 종결자를 텍스트 스트림에 씁니다. |
WriteLine(String, Object, Object)
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
지정한 것과 동일한 의미 체계를 사용하여 형식이 지정된 문자열과 줄 종결자를 씁니다.
public:
override void WriteLine(System::String ^ format, System::Object ^ arg0, System::Object ^ arg1);
public override void WriteLine (string format, object? arg0, object? arg1);
public override void WriteLine (string format, object arg0, object arg1);
override this.WriteLine : string * obj * obj -> unit
Public Overrides Sub WriteLine (format As String, arg0 As Object, arg1 As Object)
매개 변수
- format
- String
사용할 서식 문자열입니다.
- arg0
- Object
서식이 지정된 문자열에 쓸 첫 번째 개체입니다.
- arg1
- Object
형식이 지정된 문자열에 쓸 두 번째 개체입니다.
적용 대상
WriteLine(Char[], Int32, Int32)
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
문자의 하위 배열과 줄 종결자를 텍스트 스트림에 씁니다.
public:
override void WriteLine(cli::array <char> ^ buffer, int index, int count);
public override void WriteLine (char[] buffer, int index, int count);
override this.WriteLine : char[] * int * int -> unit
Public Overrides Sub WriteLine (buffer As Char(), index As Integer, count As Integer)
매개 변수
- buffer
- Char[]
데이터를 쓸 문자 배열입니다.
- index
- Int32
버퍼에서 인덱스 시작
- count
- Int32
쓸 문자 수입니다.
적용 대상
WriteLine(String, ReadOnlySpan<Object>)
지정한 것과 동일한 의미 체계를 사용하여 형식이 지정된 문자열과 줄 종결자를 씁니다.
public:
override void WriteLine(System::String ^ format, ReadOnlySpan<System::Object ^> arg);
public override void WriteLine (string format, scoped ReadOnlySpan<object?> arg);
override this.WriteLine : string * ReadOnlySpan<obj> -> unit
Public Overrides Sub WriteLine (format As String, arg As ReadOnlySpan(Of Object))
매개 변수
- format
- String
사용할 서식 문자열입니다.
- arg
- ReadOnlySpan<Object>
출력할 인수 범위입니다.
적용 대상
WriteLine(String, Object[])
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
지정한 것과 동일한 의미 체계를 사용하여 형식이 지정된 문자열과 줄 종결자를 씁니다.
public:
override void WriteLine(System::String ^ format, ... cli::array <System::Object ^> ^ arg);
public override void WriteLine (string format, params object?[] arg);
public override void WriteLine (string format, params object[] arg);
override this.WriteLine : string * obj[] -> unit
Public Overrides Sub WriteLine (format As String, ParamArray arg As Object())
매개 변수
- format
- String
사용할 서식 문자열입니다.
- arg
- Object[]
출력할 인수 배열입니다.
적용 대상
WriteLine(String, Object)
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
지정한 것과 동일한 의미 체계를 사용하여 형식이 지정된 문자열과 줄 종결자를 씁니다.
public:
override void WriteLine(System::String ^ format, System::Object ^ arg0);
public override void WriteLine (string format, object? arg0);
public override void WriteLine (string format, object arg0);
override this.WriteLine : string * obj -> unit
Public Overrides Sub WriteLine (format As String, arg0 As Object)
매개 변수
- format
- String
서식 문자열입니다.
- arg0
- Object
서식이 지정된 문자열에 쓸 개체입니다.
적용 대상
WriteLine(String)
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
지정된 문자열과 줄 종결자를 텍스트 스트림에 씁니다.
public:
override void WriteLine(System::String ^ s);
public override void WriteLine (string? s);
public override void WriteLine (string s);
override this.WriteLine : string -> unit
Public Overrides Sub WriteLine (s As String)
매개 변수
- s
- String
쓸 문자열입니다.
적용 대상
WriteLine(Single)
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
단일 텍스트 표현과 줄 종결자를 텍스트 스트림에 씁니다.
public:
override void WriteLine(float value);
public override void WriteLine (float value);
override this.WriteLine : single -> unit
Public Overrides Sub WriteLine (value As Single)
매개 변수
- value
- Single
쓸 single
.
적용 대상
WriteLine(UInt32)
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
중요
이 API는 CLS 규격이 아닙니다.
UInt32의 텍스트 표현과 줄 종결자를 텍스트 스트림에 씁니다.
public:
override void WriteLine(System::UInt32 value);
[System.CLSCompliant(false)]
public override void WriteLine (uint value);
[<System.CLSCompliant(false)>]
override this.WriteLine : uint32 -> unit
Public Overrides Sub WriteLine (value As UInteger)
매개 변수
- value
- UInt32
출력할 UInt32입니다.
- 특성
적용 대상
WriteLine(Int64)
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
8 바이트 정수의 텍스트 표현과 줄 종결자를 텍스트 스트림에 씁니다.
public:
override void WriteLine(long value);
public override void WriteLine (long value);
override this.WriteLine : int64 -> unit
Public Overrides Sub WriteLine (value As Long)
매개 변수
- value
- Int64
쓸 8 바이트 정수입니다.
적용 대상
WriteLine(Int32)
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
정수의 텍스트 표현과 줄 종결자를 텍스트 스트림에 씁니다.
public:
override void WriteLine(int value);
public override void WriteLine (int value);
override this.WriteLine : int -> unit
Public Overrides Sub WriteLine (value As Integer)
매개 변수
- value
- Int32
쓸 정수입니다.
적용 대상
WriteLine(Double)
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
Double의 텍스트 표현과 줄 종결자를 텍스트 스트림에 씁니다.
public:
override void WriteLine(double value);
public override void WriteLine (double value);
override this.WriteLine : double -> unit
Public Overrides Sub WriteLine (value As Double)
매개 변수
- value
- Double
쓸 double
.
적용 대상
WriteLine(Char[])
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
문자 배열과 줄 종결자를 텍스트 스트림에 씁니다.
public:
override void WriteLine(cli::array <char> ^ buffer);
public override void WriteLine (char[]? buffer);
public override void WriteLine (char[] buffer);
override this.WriteLine : char[] -> unit
Public Overrides Sub WriteLine (buffer As Char())
매개 변수
- buffer
- Char[]
쓸 문자 배열입니다.
적용 대상
WriteLine(Char)
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
문자 다음에 줄 종결자를 텍스트 스트림에 씁니다.
public:
override void WriteLine(char value);
public override void WriteLine (char value);
override this.WriteLine : char -> unit
Public Overrides Sub WriteLine (value As Char)
매개 변수
- value
- Char
쓸 문자입니다.
적용 대상
WriteLine(Boolean)
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
부울의 텍스트 표현과 줄 종결자를 텍스트 스트림에 씁니다.
public:
override void WriteLine(bool value);
public override void WriteLine (bool value);
override this.WriteLine : bool -> unit
Public Overrides Sub WriteLine (value As Boolean)
매개 변수
- value
- Boolean
쓸 부울입니다.
적용 대상
WriteLine()
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
줄 종결자를 씁니다.
public:
override void WriteLine();
public override void WriteLine ();
override this.WriteLine : unit -> unit
Public Overrides Sub WriteLine ()
적용 대상
WriteLine(Object)
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
- Source:
- IndentedTextWriter.cs
개체의 텍스트 표현과 줄 종결자를 텍스트 스트림에 씁니다.
public:
override void WriteLine(System::Object ^ value);
public override void WriteLine (object? value);
public override void WriteLine (object value);
override this.WriteLine : obj -> unit
Public Overrides Sub WriteLine (value As Object)
매개 변수
- value
- Object
쓸 개체입니다.
적용 대상
.NET