System.CodeDom.CodeVariableDeclarationStatement.CodeVariableDeclarationStatement C# (CSharp) Method

CodeVariableDeclarationStatement() public method

public CodeVariableDeclarationStatement ( CodeTypeReference type, string name ) : System.Diagnostics
type CodeTypeReference
name string
return System.Diagnostics
        public CodeVariableDeclarationStatement(CodeTypeReference type, string name) {
            Type = type;
            Name = name;
        }

Same methods

CodeVariableDeclarationStatement::CodeVariableDeclarationStatement ( ) : System.Diagnostics
CodeVariableDeclarationStatement::CodeVariableDeclarationStatement ( CodeTypeReference type, string name, System.CodeDom.CodeExpression initExpression ) : System.Diagnostics
CodeVariableDeclarationStatement::CodeVariableDeclarationStatement ( Type type, string name ) : System.Diagnostics
CodeVariableDeclarationStatement::CodeVariableDeclarationStatement ( Type type, string name, System.CodeDom.CodeExpression initExpression ) : System.Diagnostics
CodeVariableDeclarationStatement::CodeVariableDeclarationStatement ( string type, string name ) : System.Diagnostics
CodeVariableDeclarationStatement::CodeVariableDeclarationStatement ( string type, string name, System.CodeDom.CodeExpression initExpression ) : System.Diagnostics
CodeVariableDeclarationStatement