If i open a exe created in .Net,say 5 instance so how many appdomains
will be created???


Thanks in advance..

Regrads,
Satheesh

Re: No of Appdomains created.. by Barry

Barry
Wed Jun 07 11:12:08 CDT 2006

"BabuLives" <satheeshbabu.b@gmail.com> wrote:

> If i open a exe created in .Net,say 5 instance so how many appdomains
> will be created???

An appdomain is a sub-division of a process, so if you run a .NET
executable 5 times so that there are 5 concurrent instances running,
there will be at least 5 appdomains running, at least one per
executable.

-- Barry

--
http://barrkel.blogspot.com/

Re: No of Appdomains created.. by BabuLives

BabuLives
Thu Jun 08 00:07:24 CDT 2006

Thank you..

Barry Kelly wrote:
> "BabuLives" <satheeshbabu.b@gmail.com> wrote:
>
> > If i open a exe created in .Net,say 5 instance so how many appdomains
> > will be created???
>
> An appdomain is a sub-division of a process, so if you run a .NET
> executable 5 times so that there are 5 concurrent instances running,
> there will be at least 5 appdomains running, at least one per
> executable.
>
> -- Barry
>
> --
> http://barrkel.blogspot.com/