我的系统中安装了两个网络接口卡,我想要连接到特定NIC卡的所有计算机的列表,或者我需要的代码类似于DOS中的“arp -a”命令。我需要一个C#代码才能做到这一点。请帮帮我。
答案 0 :(得分:1)
如果你想要的只是arp -a
的输出,那么这很简单:
Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.FileName = "arp.exe";
p.StartInfo.Arguments = "-a";
p.Start();
string output = p.StandardOutput.ReadToEnd();
p.WaitForExit();
MessageBox.Show(output); //etc... parse this for what you need
您当然需要添加:
using System.Diagnostics;