Parsing assembly qualified name?

Viewed 11330

I would like to parse an assembly qualified name in .NET 3.5. In particular, the assembly itself is not available, it's just the name. I can think of many ways of doing it by hand but I guess I might be missing some feature to do that in the system libraries. Any suggestion?

5 Answers

There is a class TypeIdentifier in Alphaleonis.Reflection.Metadata (also available from NuGet) that can parse an assembly qualified name (as well as a full type name or simple type name), and deconstruct it and allow modifications to it.

Related