Reputation: 855
If this is possible, I would like to make in C# a wpf application that has a console window in it. Also, I would like to have the console interact with the WPF form so that if you are complete with a console activity it can tell the wpf application and close. I guess this would be a basic inheritance program, but with a console/simulated console included.
Upvotes: 2
Views: 1421
Reputation: 2206
You want something called interprocess communication.
There is a lot of ways of do that, but the easiest is the Named Pipes IMHO.
Upvotes: 2