Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道是否可以更改当前应用程序域的 AppDomain.CurrentDomain.SetupInformation.PrivateBinPath?还是这只影响未来的appdomain实例..
谢谢。
图书馆说
更改 AppDomainSetup 实例的属性不会影响任何现有的 AppDomain。当使用 AppDomainSetup 实例作为参数调用 CreateDomain 方法时,它只会影响新 AppDomain 的创建。
当我需要这个时,用一个空的 AppDomain 启动我的应用程序,为其他应用程序搭建舞台。你需要更多关于这方面的信息吗?