Reputation: 37
Hi i have a existing console app in c# and win form project on the same solution
Is there a way to run the console app on my winform providing the readkey needed on the console app from the textbox on my win form Sorry for my bad english
Upvotes: 0
Views: 294
Reputation: 315
Yes, of course it is possible
Check Process.Start() on MSDN
Just start the process and pass your textbox value as argument
Upvotes: 1