I want to get a System.Type given only the type name in a string.
System.Type
string
For instance, if I have an object:
MyClass abc = new MyCl
Type.GetType(...)might fail sometimes if the typeof operator can not be used.
Type.GetType(...)
typeof
Instead you can reflect on the assemblies from the current domain in order to do it.
check my response on this thread