In the spirit of the c# question..
What is the equivalent statements to compare class types in VB.NET?
The instanceof operator and isInstance() method both are used for checking the class of the object. But the main difference comes when we want to check the class of objects dynamically then isInstance() method will work. There is no way we can do this by instanceof operator.
The instanceof operator in Java is used to check whether an object is an instance of a particular class or not. Its syntax is. objectName instanceOf className; Here, if objectName is an instance of className , the operator returns true . Otherwise, it returns false .
As the name suggests, instanceof in Java is used to check if the specified object is an instance of a class, subclass, or interface.
As the name suggests, instanceof means an instance (object) of a class. Primitive datatypes are not instances. Just because java is able to automatically convert an int to an Integer, doesnt mean that the int itself is actually an Integer.
Are you looking for something like TypeOf
? This only works with reference types, not int/etc.
If TypeOf "value" Is String Then
Console.WriteLine("'tis a string, m'lord!")
Or do you want to compare two different instances of variables? Also works for ref types:
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")
You could also use gettype()
like thus, if you aren't using two objects:
If three.GetType Is gettype(integer) then WL("is int")
If you want to see if something is a subclass of another type (and are in .net 3.5):
If three.GetType.IsSubclassOf(gettype(Object)) then WL("it is")
But if you want to do that in the earlier versions, you have to flip it (weird to look at) and use:
If gettype(Object).IsAssignableFrom(three.GetType) Then WL("it is")
All of these compile in SnippetCompiler, so go DL if you don't have it.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With