本文将通过一个实例来向大家讲解如何使用C#来编写一个具备查询IP段功能的小程序。
主要功能:查询一个IP所有的IP段.
关键:从Byte数组到ulong的转换出来的数字和 IPAddress.Address 返回值的是不一样的.
以下是引用片段:
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
namespace IPUtility
{
class Program
{
static void Main(string[] args)
{
IPRangeManage irm = new IPRangeManage();
irm.Add(new IPRange("石家庄", "219.148.24.0"...[ 查看全文 ]