天天@BLOG

脖子越来越疼,脑袋越来越钝
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

判断计算机当前的网络是否连接

Posted on 2006-08-03 10:08  天天在线  阅读(493)  评论(0编辑  收藏  举报

using System.Runtime.InteropServices;
[DllImport("wininet.dll")]

        private extern static bool InternetGetConnectedState(out int connectionDescription, int reservedValue);


private static bool IsConnected()
        {

            int I = 0;

            bool state = InternetGetConnectedState(out I, 0);

            return state;

        }

        static void Main(string[] args)
        {
            Console.WriteLine(IsConnected().ToString());
        }

@忙碌,不代表有效率;方法,远胜于苦干