I cannot find an easy way to assign values to a multidimensional array. It works like this:
Dim tTableArray(2, 14) As String
tTableArray(0, 0) = "John"
tTableArray(1, 0) = "Doe"
but it seems like I should be able to do something like this:
Dim tTableArray(2, 14) As String
tTableArray({0, 1}, 0) = {"John", "Doe"}
It seems like there aught to be way to do that, because when you are defining the array you can, for example:
Dim values(,) As String = New String(,) {{"John", "Doe"}, {"Jane", "Doe"}, {"Spot", "the Dog"}}
Any Ideas? Sorry, first questions - still need to figure out how to make a code block look like code.
Thanks, Chris