本着c#问题的精神..
用来比较VB.NET中的类类型的等价语句是什么?
发布于 2009-06-16 16:01:52
你在找像TypeOf
这样的东西吗?这只适用于引用类型,不适用于int/etc。
If TypeOf "value" Is String Then
Console.WriteLine("'tis a string, m'lord!")
或者,您想要比较变量的两个不同实例?也适用于ref类型:
Dim one As Object = "not an object"
Dim two As Object = "also not an object, exactly"
Dim three as Object = 3D
If one.GetType.Equals( two.GetType ) Then WL("They are the same, man")
If one.GetType Is two.GetType then WL("Also the same")
If one.GetType IsNot three.GetType Then WL("but these aren't")
如果不使用两个对象,也可以像这样使用gettype()
:
If three.GetType Is gettype(integer) then WL("is int")
如果你想知道某个东西是否是另一种类型的子类(并且是在.net 3.5中):
If three.GetType.IsSubclassOf(gettype(Object)) then WL("it is")
但如果你想在早期版本中做到这一点,你必须翻转它(看起来很奇怪)并使用:
If gettype(Object).IsAssignableFrom(three.GetType) Then WL("it is")
所有这些都是在SnippetCompiler中编译的,所以如果你没有,就去DL吧。
发布于 2009-06-16 15:58:58
TypeOf obj Is MyClass
发布于 2009-06-16 15:59:04
链接问题的VB等价物几乎完全相同:
Dim result As Boolean = obj.GetType().IsAssignableFrom(otherObj.GetType())
https://stackoverflow.com/questions/1004476
复制相似问题