CodeVariableDeclarationStatement Class
Represents a variable declaration.
Assembly: System (in System.dll)
System.CodeDom::CodeObject
System.CodeDom::CodeStatement
System.CodeDom::CodeVariableDeclarationStatement
| Name | Description | |
|---|---|---|
![]() | CodeVariableDeclarationStatement() | Initializes a new instance of the CodeVariableDeclarationStatement class. |
![]() | CodeVariableDeclarationStatement(CodeTypeReference^, String^) | Initializes a new instance of the CodeVariableDeclarationStatement class using the specified type and name. |
![]() | CodeVariableDeclarationStatement(CodeTypeReference^, String^, CodeExpression^) | Initializes a new instance of the CodeVariableDeclarationStatement class using the specified data type, variable name, and initialization expression. |
![]() | CodeVariableDeclarationStatement(String^, String^) | Initializes a new instance of the CodeVariableDeclarationStatement class using the specified data type name and variable name. |
![]() | CodeVariableDeclarationStatement(String^, String^, CodeExpression^) | Initializes a new instance of the CodeVariableDeclarationStatement class using the specified data type, variable name, and initialization expression. |
![]() | CodeVariableDeclarationStatement(Type^, String^) | Initializes a new instance of the CodeVariableDeclarationStatement class using the specified data type and variable name. |
![]() | CodeVariableDeclarationStatement(Type^, String^, CodeExpression^) | Initializes a new instance of the CodeVariableDeclarationStatement class using the specified data type, variable name, and initialization expression. |
| Name | Description | |
|---|---|---|
![]() | EndDirectives | Gets a CodeDirectiveCollection object that contains end directives.(Inherited from CodeStatement.) |
![]() | InitExpression | Gets or sets the initialization expression for the variable. |
![]() | LinePragma | Gets or sets the line on which the code statement occurs. (Inherited from CodeStatement.) |
![]() | Name | Gets or sets the name of the variable. |
![]() | StartDirectives | Gets a CodeDirectiveCollection object that contains start directives.(Inherited from CodeStatement.) |
![]() | Type | Gets or sets the data type of the variable. |
![]() | 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.) |
CodeVariableDeclarationStatement can be used to represent code that declares a variable.
The Type property specifies the type of the variable to declare. The Name property specifies the name of the variable to declare. The InitExpression property is optional, and specifies an initialization expression to assign to the variable after it is created.
Note |
|---|
Some languages can implement the optional variable initialization expression by making a separate assignment statement after the variable declaration. |
This example demonstrates using a CodeVariableDeclarationStatement to declare a variable.
// Type of the variable to declare. // Name of the variable to declare. // Optional initExpression parameter initializes the variable. CodeVariableDeclarationStatement^ variableDeclaration = gcnew CodeVariableDeclarationStatement( String::typeid,"TestString",gcnew CodePrimitiveExpression( "Testing" ) ); // A C# code generator produces the following source code for the preceeding example code: // string TestString = "Testing";
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.



