0
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
Thanks Vulpes