我想使用Application Domain(非Process)执行带有强制参数的外部程序集。
System.AppDomain ad = AppDomain.CreateDomain("test");
// i want to pass a mandatory arguments here.
ad.ExecuteAssembly("something.exe");
System.AppDomain.Unload(ad);
我在网上搜索过这个例子,但我还没找到。