public static bool IsEqualTo(this IPAddress ip, IPAddress other)
 {
     return(NetworkUtilities.CompareTwoIpAddresses(ip, other) == IpAddressSimilarity.AllBytesMatch);
 }