网络DNS域名转换成IP地址完整代码,测试通过

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;

namespace DNS2IP
{
	class Program
	{
		// 主函数,入口函数
		static void Main(string[] args)
		{
			string strDNS="www.mimvp.com";
			string strIP = GetIP(strDNS);
			Console.WriteLine(strIP);
			Console.ReadLine();
		}

		// 利用域名,获取IP地址
		public static string GetIP(string strDNS)
		{
			IPHostEntry hostEntry = Dns.GetHostEntry(strDNS);
			IPEndPoint ipEndPoint = new IPEndPoint(hostEntry.AddressList[0], 0);
			string ipAddress = ipEndPoint.Address.ToString();
			return ipAddress;
		}
	}
}


原文: 网络DNS域名转换成IP地址

 

参考推荐

IP地址段与子网掩码

2018年中国互联网络发展状况统计报告

阿里云、腾讯云等弹性IP的开发API接口