An IP address runs from 0x00000000 to 0xFFFFFFFF.
So, check if the users IP is between 0A000000 and 0AFFFFFF (hex).
Update: Demo application:
Given an IP address a.b.c.d you may calculate its value by using:
a*2^24 + b*2^16 + c*2^8 + d*2^1
or shortened to
a*16777216 + b*65536 + c*256 + d
or in hex
a*0x10000 + b*0x1000 + c*0x100 + d
The example below uses this method to find the value of an IP address. This is often included in the socket implementation but seems to have been deprecated by Microsoft (IPAdress.Address).
using System;
using System.Net;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
var ip_range_from = IPAddress.Parse("10.0.0.0");
Console.WriteLine("From IP {0}, long value {1}", ip_range_from, GetLongIP(ip_range_from));
var ip_range_to = IPAddress.Parse("10.255.255.255");
Console.WriteLine("To IP {0}, long value {1}", ip_range_to, GetLongIP(ip_range_to));
var ip_query_fail = IPAddress.Parse("159.4.1.1");
Console.WriteLine("ValidIP({0}) returned {1} ",
ip_query_fail,
ValidIP(ip_range_from, ip_range_to, ip_query_fail)
);
var ip_query_ok = IPAddress.Parse("10.17.110.12");
Console.WriteLine("ValidIP({0}) returned {1} ",
ip_query_ok,
ValidIP(ip_range_from, ip_range_to, ip_query_ok)
);
Console.Read(); // wait ;)
}
private static bool ValidIP(IPAddress From, IPAddress To, IPAddress IP)
{
var LongIP = GetLongIP(IP);
return (LongIP > GetLongIP(From) && LongIP < GetLongIP(To));
}
private static long GetLongIP(IPAddress IP)
{
var bytes = IP.GetAddressBytes();
long LongIP = bytes[0] * 0x10000 +
bytes[1] * 0x1000 +
bytes[2] * 0x100 +
bytes[3];
return LongIP;
}
}
}