I was working with the generic class in vb.net. And it seems extension method cannot be applied to generic class without specifying the type.
I have this generic cla
If you make your extension method a generic method it should work
i.e DoSomething (Of T) () instread of just DoSomething()
_ Public Sub DoSomething(Of T)(ByVal myGenericObj As MyGeneric(Of T)) End Sub
Hope this helps