tags:

views:

143

answers:

2

Is there a way to create a function/sub signature that accepts an arbitrary typed generic in vb.net.

+3  A: 

Its like this:

Public Function DoThing(Of T)(ByVal value As T)

Hath
A: 

You can read about generic types in Visual Basic here http://msdn.microsoft.com/en-us/library/w256ka79.aspx

Qua