我一直在尝试提出一种使用C#查询WiFi信息的理想方法。我尝试了netsh方法,但不确定如何分隔信息。我注意到Vistumbler使用netsh。这些开发人员是否有办法在查询netsh时分离信息,还是只是执行大量的字符串操作以切掉不相关的内容。

最佳答案

那就是我通常要做的。调用netsh,获取输出并进行解析。

Process p = new Process();
p.StartInfo.FileName = "netsh.exe";
p.StartInfo.Arguments = "netsh arguments...";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.Start();

string output = p.StandardOutput.ReadToEnd();
// parse output and look for results

关于c# - 在C#中查询Netsh,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8274730/

10-12 19:42