标签: c# .net reflection types .net-assembly
以下面的示例为例:
var assembly = Assembly.Load("ProjA.Primates"); var myType = assembly.GetType("ProjA.Primates.Bonobo");
如果我未指定“ ProjA.Primates”。子字符串,将引发异常。
为什么无法在加载的程序集中成功找到Bonobo类型?
Bonobo