Is there any way to use ParamArray ByRef? Barring that, it there a workaround that accomplishes the same thing?
I could do some overloads, but I am trying to avoid the clunkiness.
Background: Porting over some old code, and trying to keep the same structure as much as possible.
EDIT
A specific example of what I want:
I have some code in turboBasic that I am porting to vb.net. The code has built in functions such as
Input#1,Data$(I%,1),Data$(I%,2),Data$(I%,3)
Where Input() gets file # 1 and reads three pieces of data from it and assigns it to the three variables shown. I would like to replicate this behavior with my own Input() function. To do that, how would I take in three(or more, or less) variables and assign values to them?
Ideally I would accomplish this by only modifying my own definition of Input(), so I can muck in the code base as little as possible.