Editorial / Best Answer
LordAlex
Application domains are typically created by runtime host( i.e. Windows process/program).
Application domains provide an isolation boundary for security,....
.NET program is an Assembly loading into an Application domain.
Threads are the operating system construct used by the common language runtime to execute code in Application domains.
Therefore, for .NET, Process (runtime host) -> Application Domains -> Assemblies (.NET programs)-> Managed Threads.
Any process can be divided into multiple
A) Programs
B) Threads
C) Application domains
Editorial / Best Answer
LordAlexProfile Answers by LordAlex Questions by LordAlex
Application domains are typically created by runtime host( i.e. Windows process/program). Application domains provide an isolation boundary for security,.... .NET program is an Assembly loading into an Application domain. Threads are the operating system construct used by the common language runtime to execute code in Application domains. Therefore, for .NET, Process (runtime host) -> Application Domains -> Assemblies (.NET programs)-> Managed Threads.
Related Answered Questions
Related Open Questions