Type[] type = MyAssembly.GetTypes();我不想用数组Type[]循环找
能不能直接把索引第[3]条赋给Type,怎么实现?
Type t = MyAssembly.GetType("DataLogic.Form1");
图片看不见,从文字上看可以这样:
Type t = MyAssembly.GetTypes()[3];