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