|
|
|
|
|
by SigmundA
1103 days ago
|
|
No AppDomains are not as good as processes, I have tried to go that route before, you cannot stop unruly code reliably in an app domain (you must use thread.abort() which is not good) and memory can still leak in any native code used there. The only reliable way to stop bad code like say an infinite loop is to run in another process even in .Net. They also removed Appdomain in later versions of .Net because they had little benefit and weak protections compared to a a full process. |
|