/*
* Copyright (c)
* All rights reserved
* 文件名稱
* 文件標識
* 文件摘要
*/
using System;
using System
/*
* 當前版本
* 軟件作者
* 完成日期
*
* 取代版本
* 原作者
* 完成日期
*/
namespace GetIpAndName
{
class Class
{
[STAThread]
static void Main(string[] args)
{
//得到主機名
string name = Dns
Console
IPHostEntry me = Dns
//輸出得到的IP
foreach (IPAddress ip in me
{
Console
}
Console
}
}
}
From:http://tw.wingwit.com/Article/program/net/201311/12532.html