I have a function that returns a 1D-array like this:
Public Function KeyConvert([args]) As Byte()
and a 2 dimension array:
Public KeyList(15, 5) As Byte
Which can be seen as 15 rows,each row is a 5 element array, as we all already knew.
Now I want to call the function and assign the result (which is a 1D array) to a row (say row 4) in the KeyList array. At first I thought the code should be like
Keylist(4) = KeyConvert([args])
But that didn't work. I cannot find a way to reference to that specific row.
So anybody have any idea? Thank you very much