Debug.Unindent 方法

定义

将当前的 IndentLevel 减少 1。Decreases the current IndentLevel by one.

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

示例

下面的示例设置缩进级别并发出调试消息。The following example sets the indent level and emits debugging messages.

#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
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")

该示例产生下面的输出:This example produces the following output:

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

适用于

另请参阅