NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ICodeSourceFile.CreateObjectCreateExpression

Constructs a new object creation expression.

[Visual Basic]
Function CreateObjectCreateExpression( _
   ByVal type As ICodeClass, _
   ByVal arguments() As Object _
) As ICodeObjectCreateExpression
[C#]
ICodeObjectCreateExpression CreateObjectCreateExpression(
   ICodeClass type,
   object[] arguments
);
[C++]
ICodeObjectCreateExpression* CreateObjectCreateExpression(
   ICodeClass* type,
   Object* arguments[]
) = 0;
[JScript]
function CreateObjectCreateExpression(
   type : ICodeClass,
   arguments : Object[]
) : ICodeObjectCreateExpression;

Parameters

type
The type of the object to create.
arguments
[To be supplied.]

Return Value

The newly created object creation expression.

See Also

ICodeSourceFile Interface | ICodeSourceFile Members | System.ComponentModel.Design.CodeModel Namespace