From C# Online.NET (CSharp-Online.NET)—your free C# and .NET encyclopedia
| Term
| Application domain
|
| Definition
| The logical and physical boundary created around every .NET application by the CLR. The CLR can allow multiple .NET applications to be run in a single process by loading them into separate application domains. The CLR isolates each application domain from all other application domains and prevents the configuration, security, or stability of a running .NET applications from affecting other applications. Objects can only be moved between application domains by the use of remoting.
|
| See also
| Remoting
|
| This C# Online.NET definition is from the Glossary of .NET / C# Terms.
|