CodeConditionStatement.Condition Property

Definition

Gets or sets the expression to evaluate true or 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

Property Value

A CodeExpression to evaluate true or false.

Remarks

If this conditional expression evaluates to true, the code contained in the TrueStatements collection will be executed. If this conditional expression evaluates to false and the FalseStatements collection is not empty, the code contained in the FalseStatements collection will be executed.

Applies to

See also