Getting the Assembly Qualified Name of a class in Visual Studio

Posted by Alex Marshall on Stack Overflow See other posts from Stack Overflow or by Alex Marshall
Published on 2010-04-09T22:03:39Z Indexed on 2010/04/09 22:53 UTC
Read the original article Hit count: 262

Filed under:
|
|
|

Hello,

I'm writing a customized reflective library for some specialized custom domain logic, and that library is going to use XML configuration files that will dynamically resolve System.Type objects at runtime. However, when writing the XML configuration files, it's a bit of a pain to write the types because they need to be fully qualified assembly names for Type.GetType() to resolve them. Is there a way to find out the AssemblyQualifiedName of an object in Visual Studio without resorting to writing a program to print them out to a file or standard out or anything like that ?

© Stack Overflow or respective owner

Related posts about c#

Related posts about reflection