Home C#.net Find the Ipaddress of the computer using C#.net

Find the Ipaddress of the computer using C#.net

1 min read
0
0
139

This tutorial will teach you How to Find the Ipaddress of Computer using c#.net.the tutorial is is must those who wants to interested in C# with networking programming.i will tell you the step by step.

First Step

import the namespace : using System.Net;  this namespace consist of the all the classes related to network.

Paste the code inside the form load event of the programming. When the form is loaded ipaddress will show up.

  • string computerhost = Dns.GetHostName();  This code explains get the hostname of the pc
  • string computerip = Dns.GetHostByName(computerhost).AddressList[0].ToString(); This code explains get the Ip address of the pc.
 

 

Load More Related Articles
Load More By admin
Load More In C#.net

Leave a Reply

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

Check Also

Create Maven project in Intellij

In this tutorial will see how to create Maven project in Intellij step by step. First Step…