[This is preliminary documentation and is subject to change.]

Intializes an instance of type using the specified parameters.

Namespace:  Facebook
Assembly:  Facebook (in Facebook.dll) Version: 0.2009.4.13 (0.2009.4.13)

Syntax

C#
public static Object Create(
	Type type,
	Type[] ctorSig,
	Object[] parameters
)
Visual Basic (Declaration)
Public Shared Function Create ( _
	type As Type, _
	ctorSig As Type(), _
	parameters As Object() _
) As Object
Visual C++
public:
static Object^ Create(
	Type^ type, 
	array<Type^>^ ctorSig, 
	array<Object^>^ parameters
)

Parameters

type
Type: System..::.Type
The Type of object to instantiate.
ctorSig
Type: array< System..::.Type >[]()[]
An array of Type objects that defines the signature of the target constructor.
parameters
Type: array< System..::.Object >[]()[]
An array of Objects to pass into the constructor.

Return Value

An instance of the specified type.

See Also

ObjectFactory Class
Facebook Namespace