[To be supplied.]
Recreates an object given its PersistInfo. This information was generated by a prior call to GetPersistInfo.
[Visual Basic] Overloads Overridable Public Function CreateInstance(ITypeDescriptorContext, PersistInfo) As Object
[C#] public virtual object CreateInstance(ITypeDescriptorContext, PersistInfo);
[C++] public: virtual Object* CreateInstance(ITypeDescriptorContext*, PersistInfo);
[JScript] public function CreateInstance(ITypeDescriptorContext, PersistInfo) : Object;
Creates an instance of this type given a set of property values for the object. This is useful for objects that are immutable, but still want to provide changable properties.
[Visual Basic] Overloads Overridable Public Function CreateInstance(ITypeDescriptorContext, IDictionary) As Object
[C#] public virtual object CreateInstance(ITypeDescriptorContext, IDictionary);
[C++] public: virtual Object* CreateInstance(ITypeDescriptorContext*, IDictionary);
[JScript] public function CreateInstance(ITypeDescriptorContext, IDictionary) : Object;
Creates an instance of this type given a set of property values for the object. This is useful for objects that are immutable, but still want to provide changable properties.
[Visual Basic] Overloads Public Function CreateInstance(IDictionary) As Object
[C#] public object CreateInstance(IDictionary);
[C++] public: Object* CreateInstance(IDictionary*);
[JScript] public function CreateInstance(IDictionary) : Object;
Recreates an object given its PersistInfo. This information was generated by a prior call to GetPersistInfo.
[Visual Basic] Overloads Public Function CreateInstance(PersistInfo) As Object
[C#] public object CreateInstance(PersistInfo);
[C++] public: Object* CreateInstance(PersistInfo*);
[JScript] public function CreateInstance(PersistInfo) : Object;
TypeConverter Class | TypeConverter Members | System.ComponentModel Namespace