:C# 中的 Debug 类和 Debugger 类
要调试你的代码,您需要 Debug 类中提供的函数或属性。
调试器类用于设置与调试器的通信。
Debug 类
Debug 类从 System.Diagnostics 中派生。语法为 -
public static class Debug
以下是调试器类的属性。
序号 | 属性和描述 |
---|---|
1 | AutoFlush 获取或设置一个值,指示是否在 Listeners 上调用 Flush。 |
2 | IndentLevel 设置缩进级 |
3 | IndetntSize 缩进中的空格数 |
4 | Listeners 获取侦听器集合 |
Debugger 类
Debugger 类也从 System.Diagnostics 中派生,但它使与调试器的通信成为可能,并且不能被继承。
以下为其语法 -
public sealed class Debugger
它只有一个属性。
序号 | 属性和描述 |
---|---|
1 | IsAttached 指示是否有一个调试器附加到该进程。 |
广告