Hello,
I have two dynamic arrays, each with three values. I want to display the values of both arrays horizontally.
Example:
Dim iArray1() As Integer = {1, 2, 3}
Dim iArray2() As Integer = {1, 3, 2}
What I want to print on screen:
Array 1: 1 2 3
Array 2: 1 3 2
I used dynamic array because later I'll add more values to it.
Kindly guide me, I'm pretty new to programming.
Thank you.
I have two dynamic arrays, each with three values. I want to display the values of both arrays horizontally.
Example:
Dim iArray1() As Integer = {1, 2, 3}
Dim iArray2() As Integer = {1, 3, 2}
What I want to print on screen:
Array 1: 1 2 3
Array 2: 1 3 2
I used dynamic array because later I'll add more values to it.
Kindly guide me, I'm pretty new to programming.
Thank you.