/*
* 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();
}
}
}