saurav2109
saurav2109

Reputation: 1

what is appdomain in .NET

Please let me know what is app domain in .NET

Upvotes: 0

Views: 162

Answers (1)

Randy Minder
Randy Minder

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

Related Questions