2
Answers

Application domain

Deepak Dwij

Deepak Dwij

13y
1.1k
1
Hi friends ,
                  What are the default application domain for applications in .net ?
Answers (2)
0
Vulpes
NA 98.3k 1.5m 13y
The default application domain is the domain which is created automatically by the CLR when a .NET process starts.

Often, this is the only application domain created for a particular process.

However, it's possible for additional application domains to be created within the same process. .NET's type safety feature provides isolation between domains so that they don't interfere with each other and avoids the overhead of creating a new process for each domain.
Accepted
0
Deepak Dwij
NA 6.8k 1.8m 13y
Thanks Vulpes