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 type = Type.GetType("foo.bar.MyClass, foo.bar");
MSDN. Make sure the name is Assembly Qualified.