本文介绍了我怎样才能获得本地机器?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我必须使用C#捕获并存储我的本地系统IP?
我该怎么办?
i have to catch and store my local system IP using C# ?
how could i do ?
推荐答案
IPAddress[] localIPs = Dns.GetHostAddresses(Dns.GetHostName());
foreach (IPAddress addr in localIPs)
{
Console.WriteLine(addr);
}
{
IPAddress[] localIPs = Dns.GetHostAddresses(Dns.GetHostName());
foreach (IPAddress addr in localIPs)
{
// Console.WriteLine(addr);
Console.Write(localIPs[1]);
}
}
Here the solution if configuration have more than one IP
这篇关于我怎样才能获得本地机器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!