I want to get a System.Type given only the type name in a string.
For instance, if I have an object:
MyClass abc = new MyClass();
I can then say:
System.Type type = abc.GetType();
But what if all I have is:
string className = "MyClass";
|
I want to get a For instance, if I have an object:
I can then say:
But what if all I have is:
|
||||
|
|
MSDN. Make sure the name is Assembly Qualified. |
|||
|
|
Make sure to include the namespace. There are overloads of the method that control case-sensitivity and whether an exception is thrown if the type name isn't found. |
|||||||||
|
|
To create an instance of your class after you get the type, and invoke a method -
|
|||
|
|
|
Another way to get the type from current or another assebly. (Assumes that the class namespace contains its assembly):
|
|||
|
|
|
Type.GetType(...) might fail sometimes if the typeof operator can not be used. Instead you can reflect on the assemblies from the current domain in order to do it. check my response on this thread |
|||
|
|