aap domain and clr

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to understand this..if i have 6 diif applications(exe),running on c
aomputer..will they all run in 6 diff app domainin one single process? is
this the default behavior?
 
vishy said:
I want to understand this..if i have 6 diif applications(exe),running on c
aomputer..will they all run in 6 diff app domainin one single process? is
this the default behavior?

There will be six processes if you have six executable files. Each process
will have its own appdomain.
 
vishy,

Each exe spawn its own process. If you want to have more than one app
domains in one process the code of the first exe has to run the rest of the
exes in new app domains.
 
Back
Top