CodeConditionStatement.Condition 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置要计算 true
或 false
的表达式。
public:
property System::CodeDom::CodeExpression ^ Condition { System::CodeDom::CodeExpression ^ get(); void set(System::CodeDom::CodeExpression ^ value); };
public System.CodeDom.CodeExpression Condition { get; set; }
member this.Condition : System.CodeDom.CodeExpression with get, set
Public Property Condition As CodeExpression
属性值
要计算 true
或 false
的 CodeExpression。
注解
如果此条件表达式的计算结果为 true
,则将执行集合中包含的 TrueStatements 代码。 如果此条件表达式的计算结果为 false
,并且 FalseStatements 集合不为空,则将执行集合中包含的 FalseStatements 代码。