System.CodeDom.CodeVariableDeclarationStatement.CodeVariableDeclarationStatement C# (CSharp) Метод

CodeVariableDeclarationStatement() публичный Метод

public CodeVariableDeclarationStatement ( CodeTypeReference type, string name, System.CodeDom.CodeExpression initExpression ) : System.Diagnostics
type CodeTypeReference
name string
initExpression System.CodeDom.CodeExpression
Результат System.Diagnostics
        public CodeVariableDeclarationStatement(CodeTypeReference type, string name, CodeExpression initExpression) {
            Type = type;
            Name = name;
            InitExpression = initExpression;
        }

Same methods

CodeVariableDeclarationStatement::CodeVariableDeclarationStatement ( ) : System.Diagnostics
CodeVariableDeclarationStatement::CodeVariableDeclarationStatement ( CodeTypeReference type, string name ) : 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