vote up 4 vote down star
1

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";

flag

3 Answers

vote up 12 vote down
Type type = Type.GetType("foo.bar.MyClass, foo.bar");

MSDN. Make sure the name is Assembly Qualified.

link|flag
An important note: It requires the fully qualified type name. – leppie Oct 7 '08 at 15:43
vote up 3 vote down
Type type = Type.GetType("MyClass");

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.

link|flag
Incorrect, you must also specify the assembly. – Chris Marasti-Georg Oct 7 '08 at 15:43
That wont work :) – leppie Oct 7 '08 at 15:43
From the docs, "If the type is in the currently executing assembly or in Mscorlib.dll, it is sufficient to supply the type name qualified by its namespace." – jalbert Oct 7 '08 at 15:45
Is the type in the currently executing assembly? The OP didn't specify. – Chris Marasti-Georg Oct 7 '08 at 15:50
vote up 2 vote down

To create an instance of your class after you get the type, and invoke a method -

Type type = Type.GetType("foo.bar.MyClass, foo.bar");
object instanceObject = System.Reflection.Activator.CreateInstance(type);
type.InvokeMember(method, BindingFlags.InvokeMethod, null, instanceObject, new object[0]);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.