Program.cs 571 B

123456789101112131415161718192021222324
  1. using Azylee.Core.DataUtils.StringUtils;
  2. using Azylee.Core.LogUtils.SimpleLogUtils;
  3. using Azylee.Jsons;
  4. using Azylee.YeahWeb.BaiDuWebAPI.dwz;
  5. using Azylee.YeahWeb.BaiDuWebAPI.IPLocationAPI;
  6. using Azylee.YeahWeb.ExtWebAPI.IPAddressAPI;
  7. using Azylee.YeahWeb.ExtWebAPI.IPCNAPI;
  8. using System;
  9. using System.Collections.Generic;
  10. namespace Test.YeahWeb
  11. {
  12. class Program
  13. {
  14. static void Main(string[] args)
  15. {
  16. var result = IPCNTool.Get();
  17. var rs2 = IPLocationTool.GetLocation();
  18. Console.ReadLine();
  19. }
  20. }
  21. }