C# Class NStub.CSharp.ImplicitVariableDeclarationStatement

Represents a implicit(var) variable declaration
Inheritance: System.CodeDom.CodeVariableDeclarationStatement
Exibir arquivo Open project: Jedzia/NStub Class Usage Examples

Public Methods

Method Description
ImplicitVariableDeclarationStatement ( string name, System.CodeDom.CodeExpression initExpression ) : System.CodeDom

Initializes a new instance of the ImplicitVariableDeclarationStatement class using the specified data type, variable name, and initialization expression.

Method Details

ImplicitVariableDeclarationStatement() public method

Initializes a new instance of the ImplicitVariableDeclarationStatement class using the specified data type, variable name, and initialization expression.
public ImplicitVariableDeclarationStatement ( string name, System.CodeDom.CodeExpression initExpression ) : System.CodeDom
name string The name of the variable.
initExpression System.CodeDom.CodeExpression A that indicates /// the initialization expression for the variable.
return System.CodeDom