C# Class NStub.CSharp.ImplicitVariableDeclarationStatement

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

Méthodes publiques

Méthode 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 méthode

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.
Résultat System.CodeDom