例如,我正在填写此答案中List(Of Type)
指定的
Dim columnTypes = New List(Of Type) From {GetType(Integer), GetType(Integer),
GetType(String), GetType(String)}
我想将其List
与实际Type
关键字进行比较,例如String
在伪中:
If columnTypes(i) = String Then
//do it because it's a String and not an Integer or Boolean or Object or...
如何有条件地确定其中的Type
s ?List