Assembly.GetEntryAssembly() : Assembly Properties : Assembly C# Examples


C# Examples » Assembly » Assembly Properties »

 

Assembly.GetEntryAssembly()









    
using  System;
using  System.Collections.Generic;
using  System.Text;
using  System.Threading;
using  System.Reflection;
using  System.Reflection.Emit;

public  class  MainClass
{
        public  static  void  Main()
        {
                Assembly  a2  =  Assembly.GetEntryAssembly();
                Console.WriteLine(a2.FullName);
                
        }
}
    
   
  
   



Output

main, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Assembly
» Assembly Properties