DefaultTraceListener.WriteLine(String) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Zapisuje dane wyjściowe do OutputDebugString
funkcji i Log(Int32, String, String) metody, a następnie zwraca wózek i kanał informacyjny wiersza (\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)
Parametry
- message
- String
Komunikat do zapisu na OutputDebugString
i Log(Int32, String, String).
Przykłady
Poniższy przykład kodu formatuje wyniki funkcji i używa WriteLine(String) metody do zapisania ostatniej części komunikatu do elementu 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)
Uwagi
Domyślny terminator wiersza to powrót karetki, po którym następuje kanał informacyjny wiersza (\r\n).
Aby uzyskać informacje na temat funkcji debugowania Win32 OutputDebugString
, zobacz Zestaw SDK platformy lub MSDN.
Ta metoda ustawia NeedIndent właściwość na true
.