T
Tony Johansson
Hi!
If I want to have 5 application domain and in each one have the assembly
test1.exe and test2.exe be executing.
the only way to do this is to have 5*2 = 10 threads be running. This must be
correct ?
Now to one more question when you run two assemblies test1.exe and
test2.exe in th esame application domain these two might interfere with each
other resources because they might share some resources. So here we might
have to use some kind of synchronization to shared resources. This must also
be correct ?.
You don't have to worry about synchronization when you run exe file in two
different application domain because these are isolated from each other.
Give me a comment about this !
//Tony
If I want to have 5 application domain and in each one have the assembly
test1.exe and test2.exe be executing.
the only way to do this is to have 5*2 = 10 threads be running. This must be
correct ?
Now to one more question when you run two assemblies test1.exe and
test2.exe in th esame application domain these two might interfere with each
other resources because they might share some resources. So here we might
have to use some kind of synchronization to shared resources. This must also
be correct ?.
You don't have to worry about synchronization when you run exe file in two
different application domain because these are isolated from each other.
Give me a comment about this !
//Tony