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.

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 ?

share|improve this question
1  
Process.Start(appB) – lcryder Jan 23 at 19:15
Buy I need multiple instances of appB and each to start in its own app domain. – Dejo Jan 23 at 19:16
1  
-1: Each new process have its own AppDomain so Process.Start should be fine, but it looks like you are looking for something else. Unfortunately it is very unclear what exactly you are looking for and why separate process do not work for you - please edit your question to make it clear if separte processes ok or you need single process with multiple AppDomains. – Alexei Levenkov Jan 23 at 19:34

2 Answers

up vote 1 down vote accepted

Of course it is possible. The steps to take are:

  1. Application A creates a new application domain.
  2. Execute console application B in the new application domain.
  3. Unload the new application domain after console application B has finished executing.

A very simple example is:

var appDomain = AppDomain.CreateDomain("a name");

appDomain.ExecuteAssembly("ConsoleApplicationB.exe"); //Update with the path to consolse application B.          

AppDomain.Unload(appDomain);

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.

share|improve this answer

A console can be associated with only one process. I don't see a way other that System.Diagnostics.Process.Start("B")

See http://msdn.microsoft.com/en-us/library/windows/desktop/ms681944(v=vs.85).aspx

share|improve this answer
Where did you read that? Processes can share the same console either by using AllocConsole or by creating child processes. This is the same with application domains. The new application domain can execute a console application that will share the console with the main application domain. – Panos Rontogiannis Jan 24 at 9:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.