我嘗試ping基於IP地址和端口的服務器,使用Ping類, 我必須將IP地址轉換爲字節數組,怎麼了我在做什麼? 我從什麼地方轉換IP地址的字節C#數組
bool IsConnectedToInternet
{
get
{
Uri url = new Uri("www.abhisheksur.com");
string pingurl = string.Format("{0}", url.Host);
string host = pingurl;
bool result = false;
Ping p = new Ping();
try
{
PingReply reply = p.Send(host, 3000);
if (reply.Status == IPStatus.Success)
return true;
}
catch { }
return result;
}
}
把這個方法我非得ping基於IP,而不是一個URL服務器。 謝謝。
爲什麼你需要一個IP地址轉換成字節數組? – pfries 2012-03-08 16:24:42
什麼問題?爲什麼大家都在降低速度? – idish 2012-03-08 16:25:00
@killingswine因爲我沒有服務器的URL。我正在ping一個遊戲服務器。 – idish 2012-03-08 16:25:38