我想編寫一個軟件實現路由追蹤測試,我想問一下用C#實現功能的思路
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.CreateNoWindow = false;
try
{
p.Start();
p.StandardInput.WriteLine("tracert 你的主機");
p.StandardInput.WriteLine("exit");
string 輸出結果 = p.StandardOutput.ReadToEnd();
p.WaitForExit();
p.Close();
}
catch
{
}