c#获取dns_从C#中的DNS主机名获取IP地址

c#获取dns

c#获取dns

A frequent task when designing applications that work with TCP/IP and the internet is to lookup an IP address from a hostname. It’s much easier for users to deal with the hostname than having to type in an IP address.

设计使用TCP / IP和Internet的应用程序时的常见任务是从主机名中查找IP地址。 用户处理主机名比输入IP地址要容易得多。

First you’ll add the System.Net namespace to your using section:

首先,您将System.Net命名空间添加到您的using部分:

using System.Net;

使用System.Net;

Example of code to get address from hostname:

从主机名获取地址的代码示例:

string howtogeek = "www.howtogeek.com";
IPAddress[] addresslist = Dns.GetHostAddresses(howtogeek);

foreach (IPAddress theaddress in addresslist)
{
   Console.WriteLine(theaddress.ToString());
}
 string howtogeek = " www.howtogeek.com ";
IPAddress[] addresslist = Dns.GetHostAddresses(howtogeek);

foreach (IPAddress theaddress in addresslist)
{
   Console.WriteLine(theaddress.ToString());
}

This was tested in C# 2.0.

这已在C#2.0中进行了测试。

翻译自: https://www.howtogeek.com/howto/programming/get-ip-address-from-dns-hostname-in-c/

c#获取dns

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值