views:

68

answers:

1

I have strings containing fully qualified type names a la this MSDN document. I'm wondering if there is a Framework class that will help me parse out the various components (e.g. generic type parameters).

Note that I can't simply load the Type with Type.GetType and inspect its properties because the type specified by the string may not be accessible in the context I'm trying to parse it.

A: 

There is no class designed specifically to parse type strings. Building one around a regular expression should not be a particularly difficult task though.

AnthonyWJones
Thanks, I've built my owner parser. Hopefully it won't break if they add new components to the type names.
Dave