Share via


Trace.Unindent Metode

Definisi

Mengurangi saat ini IndentLevel satu per satu.

public:
 static void Unindent();
[System.Diagnostics.Conditional("TRACE")]
public static void Unindent ();
[<System.Diagnostics.Conditional("TRACE")>]
static member Unindent : unit -> unit
Public Shared Sub Unindent ()
Atribut

Contoh

Contoh berikut meningkatkan dan mengurangi tingkat inden dan memancarkan pesan pelacakan.

Trace::WriteLine( "List of errors:" );
Trace::Indent();
Trace::WriteLine( "Error 1: File not found" );
Trace::WriteLine( "Error 2: Directory not found" );
Trace::Unindent();
Trace::WriteLine( "End of list of errors" );
Trace.WriteLine("List of errors:");
Trace.Indent();
Trace.WriteLine("Error 1: File not found");
Trace.WriteLine("Error 2: Directory not found");
Trace.Unindent();
Trace.WriteLine("End of list of errors");
Trace.WriteLine("List of errors:")
Trace.Indent()
Trace.WriteLine("Error 1: File not found")
Trace.WriteLine("Error 2: Directory not found")
Trace.Unindent()
Trace.WriteLine("End of list of errors")

Contoh ini mencetak output berikut:

List of errors:  
     Error 1: File not found  
     Error 2: Directory not found  
End of list of errors  

Berlaku untuk

Lihat juga