Overloaded. Creates an instance of a specified type defined in the specified assembly file.
Instantiate the specified type defined in the specified assembly file and optionally specifying whether the assembly is to be shared across application domains.
[Visual Basic] Overloads Public Function CreateInstanceFrom(String, String, Boolean) As ObjectHandle
[C#] public ObjectHandle CreateInstanceFrom(String, String, bool);
[C++] public: ObjectHandle* CreateInstanceFrom(String*, String*, bool);
[JScript] public function CreateInstanceFrom(String, String, Boolean) : ObjectHandle;
Instantiate the specified type defined in the specified assembly file.
[Visual Basic] Overloads Public Function CreateInstanceFrom(String, String) As ObjectHandle
[C#] public ObjectHandle CreateInstanceFrom(String, String);
[C++] public: ObjectHandle* CreateInstanceFrom(String*, String*);
[JScript] public function CreateInstanceFrom(String, String) : ObjectHandle;
Instantiate the specified type defined in the specified assembly file. Optionally, the loaded assembly can be shared across application domains. A set of activation attributes can be supplied and evidence can be supplied.
[Visual Basic] Overloads Public Function CreateInstanceFrom(String, String, Boolean, Object()) As ObjectHandle
[C#] public ObjectHandle CreateInstanceFrom(String, String, bool, Object[]);
[C++] public: ObjectHandle* CreateInstanceFrom(String*, String*, bool, Object[]);
[JScript] public function CreateInstanceFrom(String, String, Boolean, Object[]) : ObjectHandle;
Instantiate the specified type defined in the specified assembly file with the supplied arguments to the type constructor, optionally ignoring the case of the assembly name and the type name, using the specified binder and binding flags. Optionally, the loaded assembly can be shared across application domains. A set of activation attributes can be supplied and evidence can be supplied.
[Visual Basic] Overloads Public Function CreateInstanceFrom(String, String, Boolean, BindingFlags, Binder, Object(), CultureInfo, Boolean, Object(), Evidence) As ObjectHandle
[C#] public ObjectHandle CreateInstanceFrom(String, String, bool, BindingFlags, Binder, Object[], CultureInfo, bool, Object[], Evidence);
[C++] public: ObjectHandle* CreateInstanceFrom(String*, String*, bool, BindingFlags, Binder, Object[], CultureInfo, bool, Object[], Evidence);
[JScript] public function CreateInstanceFrom(String, String, Boolean, BindingFlags, Binder, Object[], CultureInfo, Boolean, Object[], Evidence) : ObjectHandle;