Rumah > Artikel > pembangunan bahagian belakang > Program C# untuk mencari alamat IP pelanggan
Mula-mula cari nama hos menggunakan kaedah Dns.GetHostName() dalam C# -
String hostName = string.Empty; hostName = Dns.GetHostName(); Console.WriteLine("Hostname: "+hostName);
Sekarang, gunakan harta IPHostEntry.AddressList untuk mendapatkan alamat IP -
IPHostEntry myIP = Dns.GetHostEntry(hostName); IPAddress[] address = myIP.AddressList;
using System; using System.Net; class Program { static void Main() { String hostName = string.Empty; hostName = Dns.GetHostName(); 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 Program C# untuk mencari alamat IP pelanggan. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!