StandardStreamWriter.WriteLine Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)
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)
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
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.