- C#
- .Net 4.5
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | // サンプル using (var process = new System.Diagnostics.Process()) { process.StartInfo.UseShellExecute = false ; process.StartInfo.CreateNoWindow = true ; process.StartInfo.RedirectStandardOutput = true ; // 標準出力リダイレクトON process.StartInfo.StandardOutputEncoding = Encoding.UTF8; // エンコーディング設定 process.StartInfo.FileName = ... ; process.StartInfo.Arguments = ... ; process.Start(); process.WaitForExit(); string text = process.StandardOutput.ReadToEnd(); // 標準出力を得る : } |
0 件のコメント:
コメントを投稿