1
Reply

what is application domain?I want to submit one application domain to another application domain, how it is possible?

May 03, 2007
4.2k
0

    The Logical and Physical boundary created around every .net application by the common Language Runtime (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.

    giri prasad
    May 04, 2007
    0