I have a console application A and console application B. Is it possible to launch multiple instances of B from A. It is important that each instance of console application B to be run in its own app domain. If it is possible, how to do that ?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Of course it is possible. The steps to take are:
A very simple example is:
Note that this is the simplest example I could make. Choose the AppDomain.CreateDomain overload that better suites your needs. Note that AppDomain.ExecuteAssembly is blocking. You will notice this when you run the example. Console application A will block until application B exits. You will have to do this asynchronously. |
|||
|
|
|
A console can be associated with only one process. I don't see a way other that See http://msdn.microsoft.com/en-us/library/windows/desktop/ms681944(v=vs.85).aspx |
|||
|