ajeeshco
Well-known member
Hi,
I have to compare objects and I think I have better options like
and
Now I'm confused which one to use, and would like to know which one is better? if is better then why?
Thanks in Advance.
I have to compare objects and I think I have better options like
VB.NET:
TypeOf obj Is ClassLibrary1.Class1
and
VB.NET:
obj.GetType Is GetType(ClassLibrary1.Class1)
Now I'm confused which one to use, and would like to know which one is better? if is better then why?
Thanks in Advance.