Please let me know what is app domain in .NET
Asked
Active
Viewed 158 times
0
-
Related http://stackoverflow.com/q/1253228/38206 – Brian Rasmussen Jan 10 '11 at 18:46
-
http://msdn.microsoft.com/en-us/library/system.appdomain%28v=VS.100%29.aspx what do you really want to know, because that web page is the explanation of what one is. – Matt Ellen Jan 10 '11 at 18:47
1 Answers
1
It is an isolated region in which code runs inside of a process. One way to think of it is like a process sitting inside of your main process.
Each AppDomain exists within a process in total isolation, which allows you to run code safely with separate security, etc.
You can easily Google this to find out more.

Randy Minder
- 47,200
- 49
- 204
- 358
-
I wouldn't call it total isolation. E.g. an unhandled exception will take down the process and any AppDomains in it. – Brian Rasmussen Jan 10 '11 at 19:11