共用方式為


CodeVariableDeclarationStatement 建構函式

定義

初始化 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.cs
來源:
CodeVariableDeclarationStatement.cs
來源:
CodeVariableDeclarationStatement.cs

初始化 CodeVariableDeclarationStatement 類別的新執行個體。

public:
 CodeVariableDeclarationStatement();
public CodeVariableDeclarationStatement ();
Public Sub New ()

適用於

CodeVariableDeclarationStatement(CodeTypeReference, String)

來源:
CodeVariableDeclarationStatement.cs
來源:
CodeVariableDeclarationStatement.cs
來源:
CodeVariableDeclarationStatement.cs

使用指定的型別和名稱來初始化 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.cs
來源:
CodeVariableDeclarationStatement.cs
來源:
CodeVariableDeclarationStatement.cs

使用指定的資料型別名稱和變數名稱來初始化 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.cs
來源:
CodeVariableDeclarationStatement.cs
來源:
CodeVariableDeclarationStatement.cs

使用指定的資料型別和變數名稱來初始化 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.cs
來源:
CodeVariableDeclarationStatement.cs
來源:
CodeVariableDeclarationStatement.cs

使用指定的資料型別、變數名稱和初始化運算式,初始化 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.cs
來源:
CodeVariableDeclarationStatement.cs
來源:
CodeVariableDeclarationStatement.cs

使用指定的資料型別、變數名稱和初始化運算式,初始化 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.cs
來源:
CodeVariableDeclarationStatement.cs
來源:
CodeVariableDeclarationStatement.cs

使用指定的資料型別、變數名稱和初始化運算式,初始化 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,表示變數的初始化運算式。

適用於