Isesame
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
namespace ConsoleApplication6
{
    class Program
    {
        static void Main(string[] args)
        {
            IPHostEntry hostinfo = Dns.GetHostEntry(@www.baidu.com);
            IPAddress[] aryIP = hostinfo.AddressList;
            foreach (IPAddress result in aryIP)
            {
                Console.WriteLine(result.ToString());
            }
        }
    }
}

 <div style="height:100px;width:100px;border:1px solid red">

</div>

分类:

技术点:

相关文章:

  • 2021-12-03
  • 2021-10-31
  • 2022-01-17
  • 2021-11-27
  • 2021-12-28
  • 2022-02-07
猜你喜欢
  • 2021-12-28
  • 2022-12-23
  • 2022-12-23
  • 2021-05-28
  • 2021-11-18
  • 2021-12-07
相关资源
相似解决方案