Edit

Share via


StandardStreamWriter.WriteLine Method

Definition

Overloads

WriteLine(IStandardStreamWriter)

Appends the current environment's line terminator.

WriteLine(IStandardStreamWriter, String)

Writes the current string value, followed by the current environment's line terminator.

WriteLine(IStandardStreamWriter)

Source:
StandardStreamWriter.cs

Appends the current environment's line terminator.

public:
[System::Runtime::CompilerServices::Extension]
 static void WriteLine(System::CommandLine::IO::IStandardStreamWriter ^ writer);
public static void WriteLine(this System.CommandLine.IO.IStandardStreamWriter writer);
static member WriteLine : System.CommandLine.IO.IStandardStreamWriter -> unit
<Extension()>
Public Sub WriteLine (writer As IStandardStreamWriter)

Parameters

writer
IStandardStreamWriter

The writer to write to.

Applies to

WriteLine(IStandardStreamWriter, String)

Source:
StandardStreamWriter.cs

Writes the current string value, followed by the current environment's line terminator.

public:
[System::Runtime::CompilerServices::Extension]
 static void WriteLine(System::CommandLine::IO::IStandardStreamWriter ^ writer, System::String ^ value);
public static void WriteLine(this System.CommandLine.IO.IStandardStreamWriter writer, string value);
static member WriteLine : System.CommandLine.IO.IStandardStreamWriter * string -> unit
<Extension()>
Public Sub WriteLine (writer As IStandardStreamWriter, value As String)

Parameters

writer
IStandardStreamWriter

The writer to write to.

value
String

The value to write.

Applies to