Reputation: 7968
How to start separate processes integrated in one wpf application in c# and how to communicate between them?
What I want is somthing like Internet Explorer.
In this case I want to Integerate several applications into one individual application with separate processes
Upvotes: 2
Views: 1416
Reputation: 369
The simplest way is to use the System.Diagnostics.Process class and named pipes. But, generally, this would hurt the maintenability (see other responses). For processes running on different machines, you better have a look at WCF.
Upvotes: 1