CodeConditionStatement Class
Represents a conditional branch statement, typically represented as an if statement.
System.CodeDom::CodeObject
System.CodeDom::CodeStatement
System.CodeDom::CodeConditionStatement
Assembly: System (in System.dll)
The CodeConditionStatement type exposes the following members.
| 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 a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | 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. // }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
