Bu C# Programı, Makinenin IP Adreslerini gösterir.
C# Programının Kaynak Kodunun kaynak kodu.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
using System; using System.Net; //Net isim alanını dahil etmemiz gerkiyor. namespace AlgoritmaOrnekleri { class Program { static void Main() { String strHostName = string.Empty; //host adını alma strHostName = Dns.GetHostName(); Console.WriteLine("Local Makina Adı: " + strHostName); IPHostEntry ipEntry = Dns.GetHostEntry(strHostName);// IP Adresini okuma IPAddress[] addr = ipEntry.AddressList; for (int i = 0; i < addr.Length; i++) { Console.WriteLine("IP Adres {0} : ", addr[i].ToString()); } Console.ReadLine(); } } } |
Çıktı:
Add Comment