Rumah > Artikel > pembangunan bahagian belakang > Bagaimana untuk memaparkan alamat IP mesin menggunakan C#?
Dapatkan alamat IP menggunakan IPHostEntry.AddressList property -
IPHostEntry myIP = Dns.GetHostEntry(hostName); IPAddress[] address = myIP.AddressList;
Cuba kod berikut untuk memaparkan alamat IP -
using System; using System.Net; class Program { static void Main() { String hostName = string.Empty; hostName = Dns.GetHostName(); Console.WriteLine("Hostname: "+hostName); IPHostEntry myIP = Dns.GetHostEntry(hostName); IPAddress[] address = myIP.AddressList; for (int i = 0; i < address.Length; i++) { Console.WriteLine("IP Address {1} : ",address[i].ToString()); } Console.ReadLine(); } }
Atas ialah kandungan terperinci Bagaimana untuk memaparkan alamat IP mesin menggunakan C#?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!