snippetcsharpCritical
How to create a new object instance from a Type
Viewed 0 times
objecthowinstancefromtypenewcreate
Problem
One may not always know the
How do you get a new object instance from a
Type of an object at compile-time, but may need to create an instance of the Type. How do you get a new object instance from a
Type?Solution
The
There are a lot of overloads for passing parameters to the constructor and such. Check out the documentation at:
http://msdn.microsoft.com/en-us/library/system.activator.createinstance.aspx
or (new path)
https://learn.microsoft.com/en-us/dotnet/api/system.activator.createinstance
Here are some simple examples:
Activator class within the root System namespace is pretty powerful.There are a lot of overloads for passing parameters to the constructor and such. Check out the documentation at:
http://msdn.microsoft.com/en-us/library/system.activator.createinstance.aspx
or (new path)
https://learn.microsoft.com/en-us/dotnet/api/system.activator.createinstance
Here are some simple examples:
ObjectType instance = (ObjectType)Activator.CreateInstance(objectType);
ObjectType instance = (ObjectType)Activator.CreateInstance("MyAssembly","MyNamespace.ObjectType");Code Snippets
ObjectType instance = (ObjectType)Activator.CreateInstance(objectType);
ObjectType instance = (ObjectType)Activator.CreateInstance("MyAssembly","MyNamespace.ObjectType");Context
Stack Overflow Q#752, score: 1073
Revisions (0)
No revisions yet.