CodeConditionStatement Class
Represents a conditional branch statement, typically represented as an if statement.
Assembly: System (in System.dll)
System.CodeDom::CodeObject
System.CodeDom::CodeStatement
System.CodeDom::CodeConditionStatement
| Name | Description | |
|---|---|---|
![]() | CodeConditionStatement() | Initializes a new instance of the CodeConditionStatement class. |
![]() | CodeConditionStatement(CodeExpression^, array<CodeStatement^>^) | Initializes a new instance of the CodeConditionStatement class using the specified condition and statements. |
![]() | CodeConditionStatement(CodeExpression^, array<CodeStatement^>^, array<CodeStatement^>^) | Initializes a new instance of the CodeConditionStatement class using the specified condition and statements. |
| Name | Description | |
|---|---|---|
![]() | Condition | Gets or sets the expression to evaluate true or false. |
![]() | EndDirectives | Gets a CodeDirectiveCollection object that contains end directives.(Inherited from CodeStatement.) |
![]() | FalseStatements | Gets the collection of statements to execute if the conditional expression evaluates to false. |
![]() | LinePragma | Gets or sets the line on which the code statement occurs. (Inherited from CodeStatement.) |
![]() | StartDirectives | Gets a CodeDirectiveCollection object that contains start directives.(Inherited from CodeStatement.) |
![]() | TrueStatements | Gets the collection of statements to execute if the conditional expression evaluates to true. |
![]() | UserData | Gets the user-definable data for the current object.(Inherited from CodeObject.) |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
CodeConditionStatement can be used to represent code that consists of a conditional expression, a collection of statements to execute if the conditional expression evaluates to true, and an optional collection of statements to execute if the conditional expression evaluates to false. A CodeConditionStatement is generated in many languages as an if statement.
The Condition property indicates the expression to test. The TrueStatements property contains the statements to execute if the expression to test evaluates to true. The FalseStatements property contains the statements to execute if the expression to test evaluates to false.
This example demonstrates using a CodeConditionStatement to represent an if statement with an else block.
// Create a CodeConditionStatement that tests a boolean value named boolean. array<CodeStatement^>^temp0 = {gcnew CodeCommentStatement( "If condition is true, execute these statements." )}; array<CodeStatement^>^temp1 = {gcnew CodeCommentStatement( "Else block. If condition is false, execute these statements." )}; // The statements to execute if the condition evalues to false. CodeConditionStatement^ conditionalStatement = gcnew CodeConditionStatement( gcnew CodeVariableReferenceExpression( "boolean" ),temp0,temp1 ); // A C# code generator produces the following source code for the preceeding example code: // if (boolean) // { // // If condition is true, execute these statements. // } // else { // // Else block. If condition is false, execute these statements. // }
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


