开发者

Create application domain and load assembly

开发者 https://www.devze.com 2023-03-14 11:18 出处:网络
I want to create an application domain with default permissions and load assembly into the application domain with default privileges and exec开发者_运维百科ute the methods inside the assembly.You may

I want to create an application domain with default permissions and load assembly into the application domain with default privileges and exec开发者_运维百科ute the methods inside the assembly.


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):

var domain = AppDomain.CreateDomain("NewAppDomain");
var path = @"C:\work\SomeAssembly.dll";
var t = typeof(SomeType);
var instance = (SomeType)domain.CreateInstanceFromAndUnwrap(path, t.FullName);

The instance variable returned with this method lives on your newly created application domain and you are ready to manipulate it.


Perhaps this helps

Can I reload an assembly in Mono CSharpRepl?

var dom = AppDomain.CreateDomain("tmp");
dom.Load("System.Core");
AppDomain.Unload(dom);

See also

Using multiple versions of the same DLL

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号