0

是否有任何方法可以比较特定范围内的地址的 IP 地址。

IPAddress[] ips;
ips = Dns.GetHostAddresses("www.xyz.com");
Console.WriteLine("GetHostAddresses({0}) returns:", "www.xyz.com");
foreach (IPAddress ip in ips)
{
    Console.WriteLine("    {0}", ip);
}
Console.ReadLine();

ips变量存储 ip 值。我想在 10.100.12.21 和 10.255.15.30 之间进行比较。如何比较其他类型的 ips?在比较 ip 范围之后转换为 ips 值以加倍。还是有其他想法?

4

2 回答 2

0

使用等于:

static void Main(string[] args)
{
    IPAddress a, b;

    a = new IPAddress(new byte[] { 10, 100, 12, 21 });
    b = new IPAddress(new byte[] { 10, 100, 12, 21 });

    Console.WriteLine("Value is {0}", a.Equals(b));

    Console.ReadLine();
}
于 2013-07-30T06:35:16.670 回答
0

自己的实现,试试这个:

    int[] maxIP = new int[] { 10, 255, 15, 30 };
    int[] minIP = new int[] { 10, 100, 12, 21 };
    char[] sep = new char[] { '.' };

    var ip = "10.100.16.21";

    string[] splitted = ip.Split(sep);

    for (int i = 0; i < splitted.Length; i++)
    {
        if (int.Parse(splitted[i]) > maxIP[i])
        {
            Console.WriteLine("IP greather than max");
            break;
        }
        else if (int.Parse(splitted[i]) < minIP[i])
        {
            Console.WriteLine("IP less than min");
            break;
        }
    }
于 2013-07-30T07:42:02.077 回答