Increases the current IndentLevel by one.
<ConditionalAttribute("DEBUG")> _ Public Shared Sub Indent
Debug.Indent()
[ConditionalAttribute("DEBUG")] public static void Indent()
[ConditionalAttribute(L"DEBUG")] public: static void Indent()
public static function Indent()
The following example sets the indent level and emits debugging messages.
Debug.WriteLine("List of errors:") Debug.Indent() Debug.WriteLine("Error 1: File not found") Debug.WriteLine("Error 2: Directory not found") Debug.Unindent() Debug.WriteLine("End of list of errors")
Debug.WriteLine("List of errors:"); Debug.Indent(); Debug.WriteLine("Error 1: File not found"); Debug.WriteLine("Error 2: Directory not found"); Debug.Unindent(); Debug.WriteLine("End of list of errors");
#if defined(DEBUG) Debug::WriteLine( "List of errors:" ); Debug::Indent(); Debug::WriteLine( "Error 1: File not found" ); Debug::WriteLine( "Error 2: Directory not found" ); Debug::Unindent(); Debug::WriteLine( "End of list of errors" ); #endif
@if(@DEBUG) Debug.WriteLine("List of errors:"); Debug.Indent(); Debug.WriteLine("Error 1: File not found"); Debug.WriteLine("Error 2: Directory not found"); Debug.Unindent(); Debug.WriteLine("End of list of errors"); @end
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 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98