DefaultTraceListener.WriteLine(String) Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Zapíše výstup do OutputDebugString
funkce a do Log(Int32, String, String) metody následované návratovým znakem a řádkovým kanálem (\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
Zpráva, která se má napsat do OutputDebugString
a Log(Int32, String, String).
Příklady
Následující příklad kódu formátuje výsledky funkce a používá metodu WriteLine(String) k zápisu poslední části zprávy do 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)
Poznámky
Výchozí ukončovací znak řádku je návrat řádku následovaný kanálem řádku (\r\n).
Informace o funkci ladění Win32 OutputDebugString
najdete v tématu Platform SDK nebo MSDN.
Tato metoda nastaví NeedIndent vlastnost na true
.