i want to create new thread for new appDomain

  • Thread starter Thread starter Daylor
  • Start date Start date
D

Daylor

can i do it this way :

from the defualt AppDomain :
create thread.
from the start function of the new thread , create new AppDomain,and then
create my class through the AppDomain .

this way is ok ?

or there is other way to do that ?
 
can i do it this way :

from the defualt AppDomain :
create thread.
from the start function of the new thread , create new AppDomain,and then
create my class through the AppDomain .

this way is ok ?

Sure, if you want to launch a new thread and from there create a new
AppDomain, that's the way to do it.

or there is other way to do that ?

To do what, exactly? What will you do with the secondary appdomain and
thread once you've got them created?



Mattias
 
Back
Top