本文介绍了IPAddress.Address已过时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有谁知道为什么这个属性已经过时了?另外,还有一个

的替代方案吗?

Does anyone know why this property is obsolete? Also, is there an
alternative available?

推荐答案




不是特别的,但通常它们是b / c,它们构建了新的功能,而且过时的东西由于依赖性的改变而不再起作用,或者没有。适合模型。我会看看能不能给你一个真正的答案
一个b / c这只是我的一个猜测
另外,是否有一个


Not specifically, but usually it''s b/c they build in new funcionality and
the obsolete stuff no longer works due to a change in a dependency or
doesn''t fit in the model. I''ll see if I can get you a real answer to this
one b/c this is just a guess on my part
Also, is there an


这样的事情:

Dim Ip_Address As IPHostEntry = Dns.Resolve(" 205.128.215.120")

MessageBox.Show( Ip_Address.HostName)


Something like this:

Dim Ip_Address As IPHostEntry = Dns.Resolve("205.128.215.120")

MessageBox.Show(Ip_Address.HostName)





不是特别的,但通常是'b / c他们建立新的功能
和过时的东西不再有效,因为依赖的变化或
不'适合模型。我会看看我是否可以给你一个真实的答案,这个b / c这个只是我的猜测。
另外,是否有一个


Not specifically, but usually it''s b/c they build in new funcionalityand the obsolete stuff no longer works due to a change in a dependency or
doesn''t fit in the model. I''ll see if I can get you a real answer tothis one b/c this is just a guess on my part
Also, is there an


这样的事情:

Dim Ip_Address As IPHostEntry = Dns.Resolve(" 205.128.215.120")

MessageBox.Show( Ip_Address.HostName)


Something like this:

Dim Ip_Address As IPHostEntry = Dns.Resolve("205.128.215.120")

MessageBox.Show(Ip_Address.HostName)





这篇关于IPAddress.Address已过时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 00:06