我得到了奇怪的错误,不知道为什么。
Type names passed to Assembly.GetType() must not specify an assembly.
奇怪的是我自己不使用 GetType() 方法。它是由以下行引起的:
var domainCommunicator = (DomainCommunicator)dmn.CreateInstanceAndUnwrap(typeof(DomainCommunicator).FullName, "DomainCommunicator");
domainCommunicator 继承自 MarshalByRefObject。它是公开的,但是当我将其更改为私有时,我得到了无法加载程序集的异常。当我在我的解决方案中创建其他项目并完全拥有外部 .dll 时,没有任何变化。可能是因为我必须在我的新 AppDomain 中引用主项目。
对我来说最好的事情是在反射中跳过 DomainCommunicator 类。它应该是私有的,仅此而已。究竟是什么导致了异常?