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内で実行できることを理解しています。私の質問は、誰がその責任を負うのか、オペレーティングシステムが特定の条件でこれを実行するのか、それともプログラマーが利用するのはプログラマーの唯一の責任であるのかということです。そのような機能?
.NETアプリケーションは、同じ(独自の)プロセスでAppDomainを作成し、実行可能ファイルをAppDomainにロードできます。
私の知る限り、OSはあなたのためにそれをしません。
使用する
var newDomain = AppDomain.CreateDomain("New Domain"); newDomain.ExecuteAssembly("MyApplication.exe");