Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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";
share|improve this question

5 Answers

Type type = Type.GetType("foo.bar.MyClass, foo.bar");

MSDN. Make sure the name is Assembly Qualified.

share|improve this answer
An important note: It requires the fully qualified type name. – leppie Oct 7 '08 at 15:43
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.

share|improve this answer
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

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]);
share|improve this answer

Another way to get the type from current or another assebly.

(Assumes that the class namespace contains its assembly):


public static Type GetType(string fullName)
{
    if (string.IsNullOrEmpty(fullName))
        return null;
    Type type = Type.GetType(fullName);
    if (type == null)
    {
        string targetAssembly = fullName;
        while (type == null && targetAssembly.Length > 0)
        {
            try
            {
                int dotInd = targetAssembly.LastIndexOf('.');
                targetAssembly = dotInd >= 0 ? targetAssembly.Substring(0, dotInd) : "";
                if (targetAssembly.Length > 0)
                    type = Type.GetType(fullName + ", " + targetAssembly);
            }
            catch { }
        }
    }
    return type;
}
share|improve this answer

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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