smwikipedia
smwikipedia

Reputation: 64421

Questions about .NET Application Domains

I know that once a .NET application is launched, 3 Application Domains are created automatically by the CLR, they are System Domain, Shared Domain and Default Domain.

System Domain:

Shared Domain:

Default Domain:

Here is a couple of questions about them:

Thanks.

Upvotes: 4

Views: 713

Answers (1)

smirkingman
smirkingman

Reputation: 6368

I'd add this a a comment rather than an answer, but I'm not allowed to comment yet. Sorry.

Cross-AppDomain memory access (as opposed to remoting) is difficult and was made so by design.

If you want a cross-domain singleton, I found this little gem

Upvotes: 3

Related Questions