mirror of
https://github.com/lionsoul2014/ip2region.git
synced 2025-12-08 19:25:22 +00:00
14 lines
285 B
C#
14 lines
285 B
C#
using IP2Region.Net.XDB;
|
|
|
|
namespace IP2Region.Net.Test;
|
|
|
|
[TestFixture]
|
|
public class UtilTest
|
|
{
|
|
[TestCase("114.114.114.114")]
|
|
public void TestIpAddressToUInt32(string value)
|
|
{
|
|
var uintIp = XDB.Util.IpAddressToUInt32(value);
|
|
Console.WriteLine(uintIp);
|
|
}
|
|
} |