取得客户数字格式(NOT THE STRING FORMAT)的最快途径是什么?
string format : 223.255.254.0
numeric format : 3758095872
页: 1
static public uint IPAddressToLong(string ipAddress)
{
var oIP = IPAddress.Parse(ipAddress);
var byteIP = oIP.GetAddressBytes();
var ip = (uint)byteIP[0] << 24;
ip += (uint)byteIP[1] << 16;
ip += (uint)byteIP[2] << 8;
ip += byteIP[3];
return ip;
}
根据请求。 用户Host Address string,但我希望国际电联或伙伴关系。 NET预示着这一点,它藏在HttpContext。
我错了吗?