NetworkInterface: GetIPv4Statistics
using System; using System.Net.NetworkInformation; class MainClass { static void Main() { if (NetworkInterface.GetIsNetworkAvailable()) { NetworkInterface[] interfaces = NetworkInterface.GetAllNetworkInterfaces(); foreach (NetworkInterface ni in interfaces) { Console.WriteLine(" Bytes Sent: {0}", ni.GetIPv4Statistics().BytesSent); } } else { Console.WriteLine("No network available."); } } }