Appdomain

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#)
 
C

Carlos J. Quintero [.NET MVP]

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top