public static AssemblyAnalyzer GetInstance()
 {
     if (_instance == null)
     {
         lock (_syncRoot)
             if (_instance == null)
             {
                 _instance = new AssemblyAnalyzer();
             }
     }
     return(_instance);
 }
Exemplo n.º 2
0
 static void Main(string[] args)
 {
     var a = new AssemblyAnalyzer("PersonAdminLib.dll");
     a.PrintTypes(AssemblyAnalyzer.Types.Any, true);
 }