C# 클래스 NStub.CSharp.ImplicitVariableDeclarationStatement

Represents a implicit(var) variable declaration
상속: System.CodeDom.CodeVariableDeclarationStatement
파일 보기 프로젝트 열기: Jedzia/NStub 1 사용 예제들

공개 메소드들

메소드 설명
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