Reference a "line" in a two-dimensional array
how do I reference (pass as a parameter) a "line" of the two-dimensional
Dim Values As Object(,)
I.e. I want to write a function that expects a one-dimensiona开发者_JS百科l array of Object
, i.e. Object()
, and pass for example Values(1)
to pass the values Values (1,lowerbound)
through Values (1,upperbound)
to my function as a one-dimensional array.
How do I do that?
VB10.
Not at all. It is not possible in VB.
精彩评论