如何使用TextBox值作为ping cmd

时间:2015-10-13 03:40:44

标签: c# ping

我可以让ping工作,我无法弄清楚如何传递文本框的值作为参数,所以我可以ping文本框中的值。有人能指出我正确的方向吗?

Process test = new Process();
test.StartInfo.FileName = "ping";
test.StartInfo.UseShellExecute = false;
test.StartInfo.Arguments = "www.google.com";
test.StartInfo.RedirectStandardOutput = true;
test.Start();
textBox1.Text = test.StandardOutput.ReadToEnd();

1 个答案:

答案 0 :(得分:1)

test.StartInfo.Arguments = "www.google.com";更改为test.StartInfo.Arguments = textBox1.Text;,假设textBox1是您感兴趣的文本框。