What is an application domain?

 Posted by Susanthampy on 5/24/2011 | Category: .NET Framework Interview questions | Views: 9767 | Points: 40
Answer:

An application domain is the CLR equivalent of an operation system’s
process. An application domain is used to isolate applications from one
another. This is the same way an operating system process works. The
separation is required so that applications do not affect one another.
This separation is achieved by making sure than any given unique
virtual address space runs exactly one application and scopes the
resources for the process or application domain using that address space.


Source: http://msdn.microsoft.com/en-u | Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Posted by: Akiii on: 7/13/2011 | Points: 10
Hi susan,

I guess it should be "operating system's process".

Login to post response