This should be simple, but it's not working.
The code below should show (to my mind) the values in the first dimension of the array, i.e., 12, 12, 13,...20.
Instead it shows 12, 12, then stops. This must be something obvious, but I can't see what the problem is. Any ideas? Thanks.

VB Code:
  1. Dim i, j, l As Integer
  2. Static x As Integer
  3. Dim arrQuNumbers(,) = {{"12", "12", "13", "14", "15", "15", "15", "16", "17", "18", "20"}, _
  4.                      {"16.1", "16.2", "17", "18", "19.1", "19.2", "19.3", "20", "21", "22", "24"}}
  5.  
  6.      
  7. For i = arrQuNumbers.GetLowerBound(0) To arrQuNumbers.GetUpperBound(0)
  8.       l = arrQuNumbers(0, i)
  9.       MessageBox.Show(l)
  10. Next