Trace.Indent Method
.NET Framework 3.0
Increases 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 Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: