C# Programmation Réseau: Obtenir le nom et l’adresse de l’hôte

Author:

using System;
using System.Net;

public class DNSName
{
   public static void Main()
   {
    string hostName = Dns.GetHostName();
    Console.WriteLine("Local hostname: {0}", hostName);
    IPHostEntry myself = Dns.GetHostByName(hostName);
    foreach (IPAddress address in myself.AddressList)
    {
       Console.WriteLine("IP Address: {0}", address.ToString());
    }
   }
}
           
       

Leave a Reply

Your email address will not be published. Required fields are marked *