Functions.AltD 方法 (Int32) | |
在应用程序中以编程方式定义断点。
命名空间:
XSharp.Core
程序集:
XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法 FUNCTION AltD(
nMode AS LONG
) AS VOID
public static void AltD(
int nMode
)
查看代码参数
- nMode
- 类型:Int32
This parameter is ignored in X#
备注
AltD() 仅在应用程序由调试器执行时才起作用。
备注 This function is inlined by the compiler, but is included so it can be used in Macros as well.
示例
此示例展示如何使用 AltD() 在函数中定义断点:
1FUNCTION Bad()
2 ...
3 AltD()
4 ...
5 RETURN Value
参见