adspace


Explain what relationship is between a process, application domain, and application?

Answer Posted / Greesh Kumar Sharma

In .NET, an Application is the highest level concept that encapsulates all resources used by a program. It can contain multiple AppDomains. A Process is the instance of a running application in memory. Each process contains at least one AppDomain, which is a lightweight runtime environment that hosts and executes common language runtime (CLR) objects, providing isolation between applications. This separation allows for better security and reliability.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the .net syntax for 'while loop'?

1143