// Form sınıfının tam ismi verilerek(namespaceleri de
// dahil olmak üzere) bir type nesnesi üretiliyor
Type myType=Type.GetType("System.Windows.Forms.Form");
// Bu sınıfın hiç parametre almayan ve public
// olan constructorı için bir ConstructorInfo
// nesnesi üretiliyor
ConstructorInfo cInfo=myType.GetConstructor(null);
// Invoke methodu aracılığıyla constructor
// çalıştırılıp, bir form nesnesi üretiliyor
object frm=cInfo.Invoke(null);
// Tekrar bu tür üzerindeki Show isimli
// method'tan bir MethodInfo nesnesi üretiliyor
MethodInfo mInfo=myType.GetMethod("Show",null);