I understand that multiple applications can run inside different AppDomains within the same process, and my question is: who is responsible for doing so, would the operating system do this on certain conditions, or is it the sole responsibility of the programmer to take advantage of such feature ?
I understand that multiple applications can run inside different AppDomains within the same process,
Share
A .NET application can create AppDomains in the same (its own) process and load an executable into the AppDomain.
The OS will not do that for you as far as I know.
Use