Assume that I execute a program with ProcessStartInfo:
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = @"program";
startInfo.Arguments = "start";
Process.Start(startInfo);
During execution, the program is asking for some input from the user. How can I provide that input from C#?
Thanks in advance.