Skip to content

Instantly share code, notes, and snippets.

@compil3
Created August 2, 2013 06:05
Show Gist options
  • Save compil3/6137796 to your computer and use it in GitHub Desktop.
Save compil3/6137796 to your computer and use it in GitHub Desktop.
private string GetLocalIP ()
{
IPHostEntry host;
host = Dns.GetHostEntry ( Dns.GetHostName () );
foreach ( IPAddress ip in host.AddressList )
{
if ( ip.AddressFamily.Equals ( AddressFamily.InterNetwork ) ) return ip.ToString ();
}
return "127.0.0.1";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment