CODE:
1 : using System.Net;
2 :
3 : string hostName = Dns.GetHostName();
4 : IPHostEntry ie = Dns.GetHostByName(hostName);
5 : IPAddress[] ia= ie.AddressList;
6 :
7 : MessageBox.Show("Local Machine Name : "+hostName.ToString());
8 : MessageBox.Show("IP address Of Local Machine "+ipAddress[0].ToString());
0 comments:
Post a Comment