Dim x = GetType(List(Of )) 'valid statement
Dim list As New List(Of String)

Now I want to see if list is a List(Of T) variable:

Dim isList = TypeOf list Is List(Of )

On the last line I get a compile error: "Type Expected".

Is there any cheap-performance TypeOf operator alternative for generics?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You will have to do this with reflection:

Dim type = list.[GetType]()
Dim isList = type.IsGenericType AndAlso
    type.GetGenericTypeDefinition() = GetType(List(Of ))
link|improve this answer
feedback

Unfortunately, this is not possible.

You need to call GetType() and check IsGenericType and GetGenericTypeDefinition.

link|improve this answer
+1 for saying 'unfortunately'. – Shimmy Jan 5 '11 at 2:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.