我无法理解。 我可以读到哪类参考资料:
Assembly mscorlib = Assembly.Load("mscorlib");
// it DOES exist, returns type reference:
mscorlib.GetType("System.Deployment.Internal.Isolation.IDefinitionAppId");
// but its parent scope doesn t exist.. returns null:
mscorlib.GetType("System.Deployment.Internal.Isolation");
// even though it exists, it doesn t compile
// System.Deployment.Internal.Isolation.IDefinitionAppId x;
如何做到这一点?