Yazı Font Küçült Yazı Font Büyült New Page

DNS Adını Öğrenme

Bu örnekte DNS adını öğreneceğiz.
İlk önce;
using System.Net; i formunuza ekleyin.

Daha sonra aşağıdaki kodları ConsoleApplication a yazın.
Aşağıdaki şekli inceleyin.

Resim1

Şekil 1

using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
namespace DNSAdi
{
    public class DNSAd
    {
        public static void Main()
        {
            string hostAd = Dns.GetHostName();
            Console.WriteLine("Local hostAd: {0}", hostAd);
            IPHostEntry myself = Dns.GetHostByName(hostAd);
            foreach (IPAddress adres in myself.AddressList)
            {
                Console.WriteLine("IP Adres: {0}", adres.ToString());
                Console.Read();
            }
        }
    }
}

//Bir sonraki makalede buluşmak üzere. Bahadır ŞAHİN