CodeVariableDeclarationStatement 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다.
오버로드
CodeVariableDeclarationStatement() |
CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다. |
CodeVariableDeclarationStatement(CodeTypeReference, String) |
지정된 형식 및 이름을 사용하여 CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다. |
CodeVariableDeclarationStatement(String, String) |
지정된 데이터 형식 이름 및 변수 이름을 사용하여 CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다. |
CodeVariableDeclarationStatement(Type, String) |
지정된 데이터 형식 및 변수 이름을 사용하여 CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다. |
CodeVariableDeclarationStatement(CodeTypeReference, String, CodeExpression) |
지정된 데이터 형식, 변수 이름 및 초기화 식을 사용하여 CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다. |
CodeVariableDeclarationStatement(String, String, CodeExpression) |
지정된 데이터 형식, 변수 이름 및 초기화 식을 사용하여 CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다. |
CodeVariableDeclarationStatement(Type, String, CodeExpression) |
지정된 데이터 형식, 변수 이름 및 초기화 식을 사용하여 CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다. |
CodeVariableDeclarationStatement()
CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다.
public:
CodeVariableDeclarationStatement();
public CodeVariableDeclarationStatement ();
Public Sub New ()
적용 대상
CodeVariableDeclarationStatement(CodeTypeReference, String)
지정된 형식 및 이름을 사용하여 CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다.
public:
CodeVariableDeclarationStatement(System::CodeDom::CodeTypeReference ^ type, System::String ^ name);
public CodeVariableDeclarationStatement (System.CodeDom.CodeTypeReference type, string name);
new System.CodeDom.CodeVariableDeclarationStatement : System.CodeDom.CodeTypeReference * string -> System.CodeDom.CodeVariableDeclarationStatement
Public Sub New (type As CodeTypeReference, name As String)
매개 변수
- type
- CodeTypeReference
변수의 데이터 형식을 나타내는 CodeTypeReference입니다.
- name
- String
변수의 이름입니다.
적용 대상
CodeVariableDeclarationStatement(String, String)
지정된 데이터 형식 이름 및 변수 이름을 사용하여 CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다.
public:
CodeVariableDeclarationStatement(System::String ^ type, System::String ^ name);
public CodeVariableDeclarationStatement (string type, string name);
new System.CodeDom.CodeVariableDeclarationStatement : string * string -> System.CodeDom.CodeVariableDeclarationStatement
Public Sub New (type As String, name As String)
매개 변수
- type
- String
변수에 대한 데이터 형식의 이름입니다.
- name
- String
변수의 이름입니다.
적용 대상
CodeVariableDeclarationStatement(Type, String)
지정된 데이터 형식 및 변수 이름을 사용하여 CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다.
public:
CodeVariableDeclarationStatement(Type ^ type, System::String ^ name);
public CodeVariableDeclarationStatement (Type type, string name);
new System.CodeDom.CodeVariableDeclarationStatement : Type * string -> System.CodeDom.CodeVariableDeclarationStatement
Public Sub New (type As Type, name As String)
매개 변수
- type
- Type
변수의 데이터 형식입니다.
- name
- String
변수의 이름입니다.
적용 대상
CodeVariableDeclarationStatement(CodeTypeReference, String, CodeExpression)
지정된 데이터 형식, 변수 이름 및 초기화 식을 사용하여 CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다.
public:
CodeVariableDeclarationStatement(System::CodeDom::CodeTypeReference ^ type, System::String ^ name, System::CodeDom::CodeExpression ^ initExpression);
public CodeVariableDeclarationStatement (System.CodeDom.CodeTypeReference type, string name, System.CodeDom.CodeExpression initExpression);
new System.CodeDom.CodeVariableDeclarationStatement : System.CodeDom.CodeTypeReference * string * System.CodeDom.CodeExpression -> System.CodeDom.CodeVariableDeclarationStatement
Public Sub New (type As CodeTypeReference, name As String, initExpression As CodeExpression)
매개 변수
- type
- CodeTypeReference
변수의 형식을 나타내는 CodeTypeReference입니다.
- name
- String
변수의 이름입니다.
- initExpression
- CodeExpression
변수의 초기화 식을 나타내는 CodeExpression입니다.
추가 정보
적용 대상
CodeVariableDeclarationStatement(String, String, CodeExpression)
지정된 데이터 형식, 변수 이름 및 초기화 식을 사용하여 CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다.
public:
CodeVariableDeclarationStatement(System::String ^ type, System::String ^ name, System::CodeDom::CodeExpression ^ initExpression);
public CodeVariableDeclarationStatement (string type, string name, System.CodeDom.CodeExpression initExpression);
new System.CodeDom.CodeVariableDeclarationStatement : string * string * System.CodeDom.CodeExpression -> System.CodeDom.CodeVariableDeclarationStatement
Public Sub New (type As String, name As String, initExpression As CodeExpression)
매개 변수
- type
- String
변수에 대한 데이터 형식의 이름입니다.
- name
- String
변수의 이름입니다.
- initExpression
- CodeExpression
변수의 초기화 식을 나타내는 CodeExpression입니다.
적용 대상
CodeVariableDeclarationStatement(Type, String, CodeExpression)
지정된 데이터 형식, 변수 이름 및 초기화 식을 사용하여 CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다.
public:
CodeVariableDeclarationStatement(Type ^ type, System::String ^ name, System::CodeDom::CodeExpression ^ initExpression);
public CodeVariableDeclarationStatement (Type type, string name, System.CodeDom.CodeExpression initExpression);
new System.CodeDom.CodeVariableDeclarationStatement : Type * string * System.CodeDom.CodeExpression -> System.CodeDom.CodeVariableDeclarationStatement
Public Sub New (type As Type, name As String, initExpression As CodeExpression)
매개 변수
- type
- Type
변수의 데이터 형식입니다.
- name
- String
변수의 이름입니다.
- initExpression
- CodeExpression
변수의 초기화 식을 나타내는 CodeExpression입니다.
적용 대상
.NET