可能重复:
如何在 C# 中获取我自己的 IP 地址?
在 C# 控制台应用程序中,我正在使用此代码
var ping = new Ping();
var reply = ping.Send();
if (reply.Status == IPStatus.Success)
{
Console.WriteLine("Pinging with server");
Console.WriteLine("Press any key to continue");
Console.ReadKey(true);
}
那么var reply = ping.Send();
我需要传递什么参数才能写入本地机器的IP?这里我需要参数中本地机器的IP。