Trace.Unindent Method
.NET Framework 2.0
Decreases the current IndentLevel by one.
Namespace: System.Diagnostics
Assembly: System (in system.dll)
Assembly: System (in system.dll)
The following example increments and decrements the indent level and emits tracing messages.
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")
This example produces the following output:
List of errors:
Error 1: File not found
Error 2: Directory not found
End of list of errors
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: