你在批处理里用:Ping 目标地址就行了。
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();
p.StandardInput.WriteLine(orderstr);
p.StandardInput.WriteLine("exit");
string strRst = p.StandardOutput.ReadToEnd();