Showing an Assemblies Fully Qualified Name


To show the fully qualified name of an assembly you can use Lutz Roeders Reflector, or you can write a simple console application to do the same thing.

namespace showtypeinfo
{
   class Program
   {
      static void Main(string[] args)
      {
         if (args.Length < 1) {             return;          }          Assembly asm = Assembly.LoadFrom(args[0].ToString());          Console.WriteLine("\nShowTypeInfo v1.0\n=================\n");          Console.WriteLine("\n   Assembly: {0}",args[0].ToString());          Console.WriteLine("\n   FQN: {0}",asm.FullName.ToString());       }    } }[/sourcecode]

Published by

Phil Harding

SharePoint Consultant, Developer, Father, Husband and Climber.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.