TextWriterTraceListener.WriteLine(String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將訊息寫入這個執行個體的 Writer,後面接著行結束字元。 預設行結束字元為後面接著換行符號 (\r\n) 的歸位字元。
public:
override void WriteLine(System::String ^ message);
public override void WriteLine (string? message);
public override void WriteLine (string message);
override this.WriteLine : string -> unit
Public Overrides Sub WriteLine (message As String)
參數
- message
- String
要寫入的訊息。
範例
下列範例會實作 TextWriterTraceListener 名為 myWriter
的 ,以寫入控制台畫面。 此範例會將兩行寫入控制台畫面。 請注意,第二個寫入出現在與第一個寫入相同的行上。 然後範例會排清並關閉數據流。
void main()
{
#if defined(TRACE)
// Create a text writer that writes to the console screen and add
// it to the trace listeners.
TextWriterTraceListener^ myWriter = gcnew TextWriterTraceListener;
myWriter->Writer = System::Console::Out;
Trace::Listeners->Add( myWriter );
// Write the output to the console screen.
myWriter->Write( "Write to the Console screen. " );
myWriter->WriteLine( "Again, write to console screen." );
// Flush and close the output.
myWriter->Flush();
myWriter->Close();
#endif
}
public class Sample
{
public static void Main(string[] args)
{
/* Create a text writer that writes to the console screen and add
* it to the trace listeners */
TextWriterTraceListener myWriter = new TextWriterTraceListener();
myWriter.Writer = System.Console.Out;
Trace.Listeners.Add(myWriter);
// Write the output to the console screen.
myWriter.Write("Write to the Console screen. ");
myWriter.WriteLine("Again, write to console screen.");
// Flush and close the output.
myWriter.Flush();
myWriter.Close();
}
}
Public Class Sample
Public Shared Sub Main()
' Create a text writer that writes to the console screen and add
' it to the trace listeners
Dim myWriter As New TextWriterTraceListener()
myWriter.Writer = System.Console.Out
Trace.Listeners.Add(myWriter)
' Write the output to the console screen.
myWriter.Write("Write to the Console screen. ")
myWriter.WriteLine("Again, write to console screen.")
' Flush and close the output.
myWriter.Flush()
myWriter.Close()
End Sub
End Class