我有点新,所以它只是一个在 C# 中测试的简单代码(WINdow CE 版本 2.0)。我想知道为什么在OpenNETCF.Net.NetworkInformation中,Ping类的Send(string)方法不能发送IP?它显示错误(PingException 未处理 - 无法发送数据包),而当我将命名空间更改为 System.Net.NetworkInformation 时,它运行良好。谁能帮忙解释一下?因为我正在处理无法使用 System.Net.NetworkInformation 命名空间的 Window CE(2.0 版)。先谢谢了。
bool result = false;
Ping ping = new Ping();
PingReply pingReply = ping.Send("12.35.146.98");
if (pingReply.Status == IPStatus.Success)
result = true;
Console.WriteLine(result.ToString());
Console.Read();