public static string mGetIPAddress()
{
string strHostName = Dns.GetHostName();
string strIPAddress = "";
IPHostEntry iphostentry = Dns.GetHostEntry(strHostName);
foreach (IPAddress ipaddress in iphostentry.AddressList)
{
strIPAddress = ipaddress.ToString();
}
return strIPAddress;
}
Difference between Rollup and Cube
14 years ago
No comments:
Post a Comment