How to create a new object instance from a Type

Code Example - How to create a new object instance from a Type

                
                        ObjectType instance = (ObjectType)Activator.CreateInstance(objectType);
ObjectType instance = (ObjectType)Activator.CreateInstance("MyAssembly","MyNamespace.ObjectType");