我可以让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();
答案 0 :(得分:1)
将test.StartInfo.Arguments = "www.google.com";
更改为test.StartInfo.Arguments = textBox1.Text;
,假设textBox1是您感兴趣的文本框。