在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
private extern static bool InternetGetConnectedState(out int connectionDescription, int reservedValue); private bool IsConnected() { int I = 0; bool state = InternetGetConnectedState(out I, 0); return state; } 调用方法:
bool state = IsConnected(); //True 为连通 False 为断开
|
请发表评论