CodeConditionStatement.Condition Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
שתף איתנו פעולה ב- GitHub
ניתן למצוא את המקור לתוכן זה ב- GitHub, שם ניתן גם ליצור ולסקור בעיות ולמשוך בקשות. לקבלת מידע נוסף, עיין במדריך התורמים שלנו.