In general, we are getting IP address by run command by type keyword ipconfig . And, if we execute this as Administrator Command Prompt then you will get the basic Network details like Host Name, IPAddress and Gateway.
In this example we can achieve both byGetHostName() and Dns.GetHostByName(hostname) Method using the namespace System.Net.
using System.Net;
class Program
{
static void Main(string[] args)
{
try
{
Console.WriteLine(GetIPAddress());
}catch (Exception ex)
{
Console.WriteLine(ex.ToString());
}
Console.ReadLine();
}private static string GetIPAddress()
{
string strHostName = null;
strHostName = System.Net.Dns.GetHostName();
string myIP = Dns.GetHostByName(strHostName).AddressList[0].ToString();
return "Host Name: " + strHostName + "; IP Address: " + myIP;
}}
Output:
your Host
your Ip Address
Post your comments / questions
Recent Article
- How to fix HAXM is not installed |in Android Studio
- How to fix CMOS Checksum Error in Computer or Laptop | SOLVED
- Reactivating windows after a Hardware change on PC or Laptop
- FIXED: Windows reported that the hardware of your device has changed. Error code :0xc004F211
- "redirect" is not defined pylance("reportUndefinedVariable)
- This action cannot be completed because the file is open in SQL Server(SQLEXPRESS) - FIXED
- Unicode error 'unicodeescape' codec can't decode bytes in position 2-3: truncated UXXXXXXXX escape
- Could not find the 'angular-devkit/build-angular:dev-server' builder's node package | Angular Error
Related Article