CodeObjectCreateExpression クラス
型の新しいインスタンスを作成する式を表します。
この型のすべてのメンバの一覧については、CodeObjectCreateExpression メンバ を参照してください。
System.Object
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeObjectCreateExpression
<Serializable>
<ClassInterface(ClassInterfaceType.AutoDispatch)>
<ComVisible(True)>
Public Class CodeObjectCreateExpression Inherits CodeExpression
[C#]
[Serializable]
[ClassInterface(ClassInterfaceType.AutoDispatch)]
[ComVisible(true)]
public class CodeObjectCreateExpression : CodeExpression
[C++]
[Serializable]
[ClassInterface(ClassInterfaceType::AutoDispatch)]
[ComVisible(true)]
public __gc class CodeObjectCreateExpression : public CodeExpression
[JScript]
public
Serializable
ClassInterface(ClassInterfaceType.AutoDispatch)
ComVisible(true)
class CodeObjectCreateExpression extends CodeExpression
スレッドセーフ
この型の public static (Visual Basicでは Shared) のすべてのメンバは、マルチスレッド操作で安全に使用できます。インスタンスのメンバの場合は、スレッドセーフであるとは限りません。
解説
CodeObjectCreateExpression を使用して、型のインスタンスを作成する式を表すことができます。
CreateType プロパティは、新しいインスタンスを作成するデータ型を指定します。 Parameters プロパティは、新しいインスタンスを作成する型のコンストラクタに渡すパラメータを指定します。
使用例
[Visual Basic, C#, C++] CodeObjectCreateExpression と既定のコンストラクタを使用して、System.DateTime クラスの新しいインスタンスを作成する方法を次の例に示します。
Dim objectCreate1 As New CodeObjectCreateExpression("System.DateTime", New CodeExpression() {})
' A Visual Basic code generator produces the following source code for the preceeding example code:
' New Date
[C#]
CodeObjectCreateExpression objectCreate1 = new CodeObjectCreateExpression( "System.DateTime", new CodeExpression[] {} );
// A C# code generator produces the following source code for the preceeding example code:
// new System.DateTime();
[C++]
CodeExpression* temp0 [];
CodeObjectCreateExpression* objectCreate1 = new CodeObjectCreateExpression( S"System.DateTime", temp0 );
// A C# code generator produces the following source code for the preceeding example code:
// new System.DateTime();
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
名前空間: System.CodeDom
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
アセンブリ: System (System.dll 内)