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

適用対象