I am trying to use a for next loop to iterate through the arrays and combine its strings
I can only get the first array. Don’t know how to code to combine with the second one and create the third array using VB.NET. could you help please?
ex:
arrLetters() As String = {"A", "B", "C", "D", "E", "F", "G", "H", "I"}
arrNumbers() As String = {"1", "2", "3", "4", "5", "6", "7", "8", "9"}
resulting array(81) = {A1, A2 ...A9, B1, B2...B9, ...I9}
In C# it would be:
In VB, with the result going in to an array variable: