程序猿

道,可道,非常道;名,可名,非常名;

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

判断宽带连接方式的类:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace QQ号批量注册
{
    class judgeBroadband
    {
        public const int INTERNET_CONNECTION_MODEM = 1;
        public const int INTERNET_CONNECTION_LAN = 2;
        [System.Runtime.InteropServices.DllImport("wininet.dll")]
        public static extern bool InternetGetConnectedState(
        ref   int dwFlag,
        int dwReserved
        ); 

    }
}

 

posted on 2012-09-24 20:11  minxiangyang  阅读(96)  评论(0)    收藏  举报