vote up 3 vote down star
1

I have MyClass<T>.

And then I have this string s = "MyClass<AnotherClass>";
How can I get Type from the string s ?

One way (ugly) is to parse out the "<" and ">" and do:

Type acType = Type.GetType("AnotherClass");  
Type whatIwant = typeof (MyClass<>).MakeGenericType(acType);

But is there a cleaner way to get the final type without any parsing etc. ? Thanks.

flag

80% accept rate

5 Answers

vote up 6 vote down check

The format for generics is the name, a ` character, the number of type parameters, followed by a comma-delimited list of the types in brackets:

Type.GetType("System.Collections.Generic.IEnumerable`1[System.String]");

I'm not sure there's an easy way to convert from the C# syntax for generics to the kind of string the CLR wants. I started writing a quick regex to parse it out like you mentioned in the question, but realized that unless you give up the ability to have nested generics as type parameters the parsing will get very complicated.

link|flag
+1 - great answer, thanks! I was fiddling around trying to find out how to handle generics! – marc_s Apr 6 at 15:39
Thanks. This works and I have to modify the code to format the string this way. However, was wondering if there is still a way to simply use : "MyClass<AnotherClass>" exactly the way it is shown in the string to get the Type instance. Looks a lot cleaner. – DeeStackOverflow Apr 6 at 16:32
vote up 10 vote down

Check out "Activator.CreateInstance" - you can call it with a type

Activator.CreateInstance(typeof(MyType))

or with an assembly and type name as string

Activator.CreateInstance("myAssembly", "myType")

This will give you an instance of the type you need.

If you need the "Type" rather than the instance, use the Type.GetType() method and the fully qualified name of the type you're interested in, e.g.:

string s = "System.Text.StringBuilder";
Type myClassType = Type.GetType(s);

That'll give you the "Type" in question.

Marc

link|flag
This just gets an instance of the type, not a System.Type instance, which based on the code snippet, seems to be what OP is looking for. – Daniel Schaffer Apr 6 at 15:26
vote up 0 vote down

I don't have much time to parse through this, though I think I have seen some similar answers. In particular, I think they are doing exactly what you want to do here:

http://stackoverflow.com/questions/695878/entity-framework-generic-repository-error/698365

(String.Format("[{0}]", baseType.Name.ToString())).OfType<T>();

Hopefully this helps, let me know more specifically if this isn't.

link|flag
vote up 2 vote down

To just get the type object from the string, use:

Type mytype = Type.GetType(typeName);

You can then pass this to Activator.CreateInstance():

Activator.CreateInstance(mytype);
link|flag
vote up 0 vote down

Hi I'm a beginner and reading the topics here. I would like to know what does it mean when you say "type" from the string s? based from the question, "How can I get Type from the string s. Does "Type" here means like the Data type, like int, string, bool, char?...

thanks ;-)

link|flag
Yes, the type of a variable is "what it is" (like an int or a string). In C# there is also a special class Type (see msdn.microsoft.com/en-us/library/…) which represents a specific type at runtime. Take a look at the samples in the URL and tinker with them. – VVS Jun 10 at 23:20

Your Answer

Get an OpenID
or

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