首页 > 开发 > 综合 > 正文

C#中如何得到主机名与IP地址

2024-07-21 02:29:14
字体:
来源:转载
供稿:网友

/*

* copyright (c) 2006,四川师范大学

* all rights reserved.

* 文件名称:getipandname

* 文件标识:见配置管理计划书

* 文件摘要:得到本地主机的名字与ip

*/

using system;

using system.net;

/*

* 当前版本:1.0

* 软件作者:安美洪

* 完成日期:2006年3月28日

*

* 取代版本:无

* 原作者 :无

* 完成日期:无

*/

namespace getipandname

{

class class1

{

[stathread]

static void main(string[] args)

{

//得到主机名

string name = dns.gethostname();

console.writeline("主机名字:{0}",name);

iphostentry me = dns.gethostbyname(name);

//输出得到的ip

foreach (ipaddress ip in me.addresslist)

{

console.writeline("ip 地址:{0}",ip.tostring());

}

console.read();

}

}

}

商业源码热门下载www.html.org.cn

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表