创建应用程序域并加载程序集
我想创建一个具有默认权限的应用程序域,并以默认权限将程序集加载到应用程序域中,并执行程序集中的方法。
I want to create an application domain with default permissions and load assembly into the application domain with default privileges and execute the methods inside the assembly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以查看 MSDN 上的以下文章。或者,如果您想在另一个 AppDomain 中构造某种类型的实例(假设此类型有默认构造函数):
此方法返回的
instance
变量位于您新创建的应用程序域中,您准备好操纵它。You may take a look at the following article on MSDN. Or if you want to construct an instance of some type inside another AppDomain (assuming this type has a default constructor):
The
instance
variable returned with this method lives on your newly created application domain and you are ready to manipulate it.也许这有帮助
我可以在 Mono CSharpRepl 中重新加载程序集吗?
另请参阅
使用同一 DLL 的多个版本
Perhaps this helps
Can I reload an assembly in Mono CSharpRepl?
See also
Using multiple versions of the same DLL