vb.net 数组定义和赋值

2024年11月15日 11:33
有1个网友回答
网友(1):

Dim S As String()
Dim j As Integer = 9
ReDim S(j)
For i = 0 To j
S(i) = i
Next

注: 指定数组上限才能对其赋值