Program.cs 439 B

12345678910111213141516171819
  1. using Azylee.YeahWeb.BaiDuWebAPI.IPLocationAPI;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace Test.BaiDuWebAPI
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. var loc1 = IPLocationTool.GetLocation();
  13. var loc2 = IPLocationTool.GetLocation();
  14. bool cp = loc1.Like(loc2);
  15. Console.WriteLine("");
  16. }
  17. }
  18. }