tags:

views:

131

answers:

1

Hello everyone

Right now, I want to develop a simple application, so I decided that the fastest way to code would be C#.NET, but right now, I'm having a hard time to implement one of the features I need.

What I'm trying to do, is to run a C/C++ console application inside the window of my C# application, like in Unreal Frontend with the little addition of to way communication, so that I can give the console application input for scanf() and std::sin. And what control should I user to display and get the data?

Can anyone point me into the right direction?

Thanks in advanced

+6  A: 

Start the C++ process using the Process class, and use Process.StandardOutput and Process.StandardInput to pass data back and forth.

Reed Copsey
Thanks for your answer, in 10 minutes more you get accepted!
Fladur