BreakpointTarget.Expression 属性

定义

获取或设置一个表达式,将计算该表达式以确定是否应出现断点。

public:
 property System::String ^ Expression { System::String ^ get(); void set(System::String ^ value); };
public string Expression { get; set; }
member this.Expression : string with get, set
Public Property Expression As String

属性值

包含要计算的表达式的字符串。

示例

下面的代码示例演示如何设置断点表达式以计算变量的值。

bp.Expression = "@v == 1";  
bp.Expression = "@v == 1"  

适用于