CodeObjectCreateExpression Class
.NET Framework 3.0
Represents an expression that creates a new instance of a type.
Namespace: System.CodeDom
Assembly: System (in system.dll)
Assembly: System (in system.dll)
[SerializableAttribute] [ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)] [ComVisibleAttribute(true)] public class CodeObjectCreateExpression : CodeExpression
/** @attribute SerializableAttribute() */ /** @attribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) */ /** @attribute ComVisibleAttribute(true) */ public class CodeObjectCreateExpression extends CodeExpression
SerializableAttribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) ComVisibleAttribute(true) public class CodeObjectCreateExpression extends CodeExpression
Not applicable.
CodeObjectCreateExpression can be used to represent an expression that creates an instance of a type.
The CreateType property specifies the data type to create a new instance of. The Parameters property specifies the parameters to pass to the constructor of the type to create a new instance of.
The following example demonstrates use of CodeObjectCreateExpression to create a new instance of the System.DateTime class using the default constructor.
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();
CodeObjectCreateExpression objectCreate1 = new
CodeObjectCreateExpression("System.DateTime",
new CodeExpression[]{});
// A VJ# code generator produces the following source code for the
// preceeding example code:
// new System.DateTime();
System.Object
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeObjectCreateExpression
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeObjectCreateExpression
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: