点击或拖拽改变大小

Functions.AltD 方法 (Int32)

X#
在应用程序中以编程方式定义断点。

命名空间:  XSharp.Core
程序集:  XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法
 FUNCTION AltD(
	nMode AS LONG
) AS VOID
查看代码

参数

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() 在函数中定义断点:
X#
1FUNCTION Bad()
2    ...
3    AltD()            // 编程断点
4    ...
5    RETURN Value
参见