TextWriterTraceListener.Write(String) 方法
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将一条消息写入此实例的 Writer。
public:
override void Write(System::String ^ message);
C#
public override void Write (string? message);
C#
public override void Write (string message);
override this.Write : string -> unit
Public Overrides Sub Write (message As String)
- message
- String
要写入的消息。
以下示例实现一myWriter
个名为 TextWriterTraceListener 的 以写入控制台屏幕。 该示例将两行写入控制台屏幕。 请注意,第二次写入与第一次写入在同一行中显示。 然后,该示例刷新并关闭流。
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 console screen. " );
myWriter->WriteLine( "Again, write to the Console screen." );
// Flush and close the output.
myWriter->Flush();
myWriter->Close();
#endif
}
C#
public class Sample
{
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 console screen. ");
myWriter.WriteLine("Again, write to the 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 console screen. ")
myWriter.WriteLine("Again, write to the Console screen.")
' Flush and close the output.
myWriter.Flush()
myWriter.Close()
End Sub
End Class
产品 | 版本 |
---|---|
.NET | Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9 |
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0, 2.1 |