Guest User

Untitled

a guest
Jan 17th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. NetworkInterface[] adapters = NetworkInterface.GetAllNetworkInterfaces();
  2. foreach (NetworkInterface adapter in adapters)
  3. {
  4. IPInterfaceProperties properties = adapter.GetIPProperties();
  5. IPv4InterfaceStatistics stats = adapter.GetIPv4Statistics();
  6. Console.WriteLine(adapter.Description);
  7. Console.WriteLine("Speed .....: {0}",adapter.Speed);
  8. }
Add Comment
Please, Sign In to add comment