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)
- 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
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.