boutique replica bags up ideas

the best replique rolex and prices here.

julia highlight 99j hair color 10a quality straight human hair lace front wigs 8 - 24 inches pre plucked hairline 13x4 inches lace front brazilian wig onlinefor sale

Convert IP Address to Hostname using C#

Updated on     Kisan Patel

If you have an IP address and you need to resolve its hostname then use the Dns.GetHostEntry method in C#.

Namespace:

using System.Net;

Program

class Program
{
    static void Main(string[] args)
    {

        IPHostEntry iphost = Dns.GetHostEntry("127.0.0.1");
        string hostName = iphost.HostName;
        // Print out name.
        Console.WriteLine(hostName);
        Console.ReadKey();
    }

}

Output of the above program…

IP-Address-to-Hostname


C#

Leave a Reply