Reflection C# Tutorial

using System;
using System.Collections.Generic;
using System.Reflection;
using System.Text;
   public class Tester
   {
      public static void Main()
      {
         Assembly a = Assembly.Load( "Mscorlib.dll" );
         Type[] types = a.GetTypes();
         foreach ( Type t in types )
         {
            Console.WriteLine( "Type is {0}", t );
         }
         Console.WriteLine(
            "{0} types found", types.Length );
      }
   }