How can I find the rightmost column in a 2D array in vb.net? I currently have a 2 dimensional array as follows
Dim intArray(0 To 34, 0 To 57) As Integer
I want to find the right most column (highest second number), and UBound only returns the last row. How can I do this?
Specify, the dimension in
UBound():Another example: