C# Класс NStub.CSharp.ImplicitVariableDeclarationStatement

Represents a implicit(var) variable declaration
Наследование: System.CodeDom.CodeVariableDeclarationStatement
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

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

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.
Результат System.CodeDom