NStub.CSharp.ImplicitVariableDeclarationStatement.ImplicitVariableDeclarationStatement C# (CSharp) Method

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
        public ImplicitVariableDeclarationStatement(string name, CodeExpression initExpression)
            : base("var", name, initExpression)
        {
        }
ImplicitVariableDeclarationStatement