using System.Net;
// 取得本機名稱
String strHostName = Dns.GetHostName();
// 取得本機的 IpHostEntry 類別實體
IPHostEntry iphostentry = Dns.GetHostEntry(strHostName);
Console.WriteLine("電腦名稱" + strHostName);
// 取得所有 IP 位址
int num = 1;
foreach (IPAddress ipaddress in iphostentry.AddressList)
{
Console.WriteLine("IP #" + num + ": " + ipaddress.ToString());
num = num + 1;
}
資料來源: The Will Will Web | 如何用 C# 取得本機所有的 IP 位址
延伸閱讀: 使用word開啟網頁資料,可以將網頁下載存成WORD檔.
沒有留言:
張貼留言