标签: .net arrays
我有一个已定义的数组:
Private shapePoints(picWidth, picHeight) As Integer
我需要在代码中更改此数组的大小。
我该怎么做?
答案 0 :(得分:2)
ReDim shapePoints(picWidth, picHeight)