VB Equivalent of C# Type Check
Posted
by Steven
on Stack Overflow
See other posts from Stack Overflow
or by Steven
Published on 2010-04-12T20:09:52Z
Indexed on
2010/04/12
20:12 UTC
Read the original article
Hit count: 374
What is the VB Equivalent of the following C# boolean expression?
data.GetType() == typeof(System.Data.DataView)
Note: The variable data is declared as IEnumerable.
© Stack Overflow or respective owner