I've been trying to come up with an ideal way to query WiFi information using C#. I've tried the netsh
method but was unsure how to separate the information. I notice that Vistumbler
uses netsh
. Is there a way that these developers would have separated the information when querying netsh
or have they just performed a lot of string manipulation to cut out the irrelevant stuff.
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Generic Generics in Managed C++
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
That is what I do usually. Call
netsh
, get the output and parse it.