Hi!!
Is it possible to have a class, sub or function declared with an arbitrary number of parameters? And those parameters be a type, like generics? For example
vb.net Code:
Public Class Test (Of T1, (Of T2))'The (Of T2) means that after the first parameter can be an arbitrary number of parameters Public Sub New (Of T1, (Of T2)) ... End Sub ... End Function Dim a As Test (Of String, Of Integer, Of Short, Of Long)




Reply With Quote