我现在知道命名空间的全名,知道程序集的名字,怎么才能反射到这个命名空间下所有的类呢?
System.Reflection.Assembly ass = System.Reflection.Assembly.LoadFile("filePath");Type[] types = ass.GetTypes();foreach (Type type in types){ if (type.Namespace == "xxx") { //... }}