Computer >> Máy Tính >  >> Lập trình >> C#

Làm thế nào để hiển thị Địa chỉ IP của Máy bằng C #?


Sử dụng Thuộc tính IPHostEntry.AddressList để lấy Địa chỉ IP -

IPHostEntry myIP = Dns.GetHostEntry(hostName);
IPAddress[] address = myIP.AddressList;

Hãy thử mã sau để hiển thị địa chỉ IP -

Ví dụ

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