J
Jay
Why is it that array declarations are different than expected (other
languages)
for example:
dim strArray(5) as String
really means that there are 6 elements and their names are 0, 1,2,3,4,5
I would expect the following:
dim strArray(5) as String
There are 5 elements and their names are 0, 1,2,3,4
languages)
for example:
dim strArray(5) as String
really means that there are 6 elements and their names are 0, 1,2,3,4,5
I would expect the following:
dim strArray(5) as String
There are 5 elements and their names are 0, 1,2,3,4