다음을 통해 공유


StreamWriter.WriteLine 메서드

정의

오버로드

WriteLine(String, Object, Object, Object)

Format(String, Object)동일한 의미 체계를 사용하여 서식이 지정된 문자열과 새 줄을 스트림에 씁니다.

WriteLine(String, Object, Object)

Format(String, Object, Object) 메서드와 동일한 의미 체계를 사용하여 형식이 지정된 문자열과 새 줄을 스트림에 씁니다.

WriteLine(String, ReadOnlySpan<Object>)

Format(String, ReadOnlySpan<Object>)동일한 의미 체계를 사용하여 서식이 지정된 문자열과 새 줄을 스트림에 씁니다.

WriteLine(String)

문자열을 스트림에 쓴 다음 줄 종결자를 씁니다.

WriteLine(String, Object)

Format(String, Object) 메서드와 동일한 의미 체계를 사용하여 형식이 지정된 문자열과 새 줄을 스트림에 씁니다.

WriteLine(ReadOnlySpan<Char>)

문자 범위의 텍스트 표현을 스트림에 쓴 다음 줄 종결자를 씁니다.

WriteLine(String, Object[])

Format(String, Object)동일한 의미 체계를 사용하여 서식이 지정된 문자열과 새 줄을 스트림에 씁니다.

WriteLine(String, Object, Object, Object)

Source:
StreamWriter.cs
Source:
StreamWriter.cs
Source:
StreamWriter.cs

Format(String, Object)동일한 의미 체계를 사용하여 서식이 지정된 문자열과 새 줄을 스트림에 씁니다.

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

매개 변수

format
String

복합 형식 문자열입니다.

arg0
Object

서식을 지정하고 쓸 첫 번째 개체입니다.

arg1
Object

서식을 지정하고 쓸 두 번째 개체입니다.

arg2
Object

서식을 지정하고 쓸 세 번째 개체입니다.

설명

제공되는 복합 서식 기능에 대한 설명은 WriteLine(String, Object, Object, Object) 참조하세요.

적용 대상

WriteLine(String, Object, Object)

Source:
StreamWriter.cs
Source:
StreamWriter.cs
Source:
StreamWriter.cs

Format(String, Object, Object) 메서드와 동일한 의미 체계를 사용하여 형식이 지정된 문자열과 새 줄을 스트림에 씁니다.

public:
 override void WriteLine(System::String ^ format, System::Object ^ arg0, System::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(String, Object, Object) 참조하세요.

적용 대상

WriteLine(String, ReadOnlySpan<Object>)

Format(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>

서식을 지정하고 쓸 개체가 0개 이상 포함된 개체 범위입니다.

적용 대상

WriteLine(String)

Source:
StreamWriter.cs
Source:
StreamWriter.cs
Source:
StreamWriter.cs

문자열을 스트림에 쓴 다음 줄 종결자를 씁니다.

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

매개 변수

value
String

쓸 문자열입니다. value null경우 줄 종결자만 기록됩니다.

설명

이 오버로드는 TextWriter.Write(Char[]) 오버로드와 동일합니다.

줄 종결자는 CoreNewLine 필드에 의해 정의됩니다.

이 메서드는 지정된 문자열에서 개별 줄 바꿈 문자(16진수 0x000a)를 검색하지 않고 NewLine바꿉니다.

일반적인 I/O 작업 목록은 일반적인 I/O 작업참조하세요.

적용 대상

WriteLine(String, Object)

Source:
StreamWriter.cs
Source:
StreamWriter.cs
Source:
StreamWriter.cs

Format(String, Object) 메서드와 동일한 의미 체계를 사용하여 형식이 지정된 문자열과 새 줄을 스트림에 씁니다.

public:
 override void WriteLine(System::String ^ format, System::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, Object) 참조하세요.

적용 대상

WriteLine(ReadOnlySpan<Char>)

Source:
StreamWriter.cs
Source:
StreamWriter.cs
Source:
StreamWriter.cs

문자 범위의 텍스트 표현을 스트림에 쓴 다음 줄 종결자를 씁니다.

public:
 override void WriteLine(ReadOnlySpan<char> buffer);
public override void WriteLine (ReadOnlySpan<char> buffer);
override this.WriteLine : ReadOnlySpan<char> -> unit
Public Overrides Sub WriteLine (buffer As ReadOnlySpan(Of Char))

매개 변수

buffer
ReadOnlySpan<Char>

스트림에 쓸 문자 범위입니다.

설명

지정한 값의 텍스트 표현은 ReadOnlySpan<Char>호출하여 생성됩니다. ToString 메서드입니다.

줄 종결자는 CoreNewLine 필드에 의해 정의됩니다.

일반적인 I/O 작업 목록은 일반적인 I/O 작업참조하세요.

적용 대상

WriteLine(String, Object[])

Source:
StreamWriter.cs
Source:
StreamWriter.cs
Source:
StreamWriter.cs

Format(String, Object)동일한 의미 체계를 사용하여 서식이 지정된 문자열과 새 줄을 스트림에 씁니다.

public:
 override void WriteLine(System::String ^ format, ... cli::array <System::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[]

서식을 지정하고 쓸 개체가 0개 이상 포함된 개체 배열입니다.

설명

제공되는 복합 서식 기능에 대한 설명은 WriteLine(String, Object[]) 참조하세요.

적용 대상