Appdomain

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am new to .net,

I want to know what is appdomain and process? how they are related.

how the .net framework executes the Windows application (C#)
 
There are whole chapters of books about this subject but in short:

- One process can host one or more AppDomains.
- An AppDomain is a logical container for a set of assemblies. An AppDomain
is isolated from others, can be loaded or unloaded upon request, and
configured individually.

So, since managed apps can not damage others, several managed apps can run
in the same process, one on each AppDomain.

--

Carlos J. Quintero

MZ-Tools 4.0: Productivity add-ins for Visual Studio .NET
You can code, design and document much faster.
http://www.mztools.com
 
Back
Top