DefaultTraceListener.WriteLine(String) 方法

定义

将输出写入 OutputDebugString 函数和 Log(Int32, String, String) 方法,后接回车符和换行符 (\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

要写入 OutputDebugStringLog(Int32, String, String) 的消息。

示例

下面的代码示例设置函数结果的格式,并使用 WriteLine(String) 方法将消息的最后一 DefaultTraceListener部分写入 到 。

// Compute the next binomial coefficient.
// If an exception is thrown, quit.
decimal result = CalcBinomial(possibilities, iter);
if (result==0) {return;}

// Format the trace and console output.
string binomial = String.Format("Binomial( {0}, {1} ) = ", possibilities, iter);
defaultListener.Write(binomial);
defaultListener.WriteLine(result.ToString());
Console.WriteLine("{0} {1}", binomial, result);
' Compute the next binomial coefficient.  
' If an exception is thrown, quit.
Dim result As Decimal = CalcBinomial(possibilities, iter)
If result = 0 Then Return

' Format the trace and console output.
Dim binomial As String = String.Format( _
        "Binomial( {0}, {1} ) = ", possibilities, iter)
defaultListener.Write(binomial)
defaultListener.WriteLine(result.ToString)
Console.WriteLine("{0} {1}", binomial, result)

注解

默认行结束符是回车符后接一个换行符 (\r\n)。

有关 Win32 OutputDebugString 调试函数的信息,请参阅平台 SDK 或 MSDN。

此方法将 NeedIndent 属性设置为 true

适用于

另请参阅