标签:des style blog color cti io
1 public static class NetWork 2 { 3 [DllImport("wininet.dll")] 4 private extern static bool InternetGetConnectedState(out int connectionDescription, int reservedValue); 5 6 public static bool IsOnLine() 7 { 8 try 9 { 10 var connection = 0; 11 return InternetGetConnectedState(out connection, 0); 12 } 13 catch (Exception) 14 { 15 throw; 16 } 17 } 18 }
WPF 检测计算机网络连接情况,布布扣,bubuko.com
标签:des style blog color cti io
原文地址:http://www.cnblogs.com/gaobing/p/3830272.html