現在、実行中のプロセスがありますが、ユーザーが入力する必要があります
y <return>
<return>
私が使用しているコードは次のとおりです
ProcessStartInfo psi = new ProcessStartInfo();
string exepath = Directory.GetParent(System.Reflection.Assembly.GetExecutingAssembly().Location).ToString();
Process proc = new Process();
psi.FileName = exepath + @"\lib\dnaml";
psi.RedirectStandardInput = true;
psi.Arguments = "y\r \r";
psi.UserShellExecute = true;
proc.StartInfo = psi;
proc.Start();
proc.WaitForExit();
これらの入力をハードタイプします。何か提案はありますか?ありがとう