第一次尝试
Dim holdValues() As Integer 'Doesn't Work
holdValues(1) = 55
第二次尝试
Dim holdValues(-1) As Integer 'Gives me Index was outside the bounds of the array.
holdValues(1) = 55
我正在尝试做类似的事情
Dim myString(-1) As String
但显然这不适用于整数数组。我不知道数组的大小是多少,它不会变小,但会变大。
任何帮助将不胜感激,谢谢!