Reputation: 1
Please let me know what is app domain in .NET
Upvotes: 0
Views: 162
Reputation: 48392
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.
Upvotes: 1