I've been searching for an example for array of arrays but I couldn't find any. Any link or explanation will be great.
What I'm really trying to do: I have angles and edges of polygons and I want to insert those informations inside array, It looks like this at the time:
Dim edges() as integer
Dİm angles() as integer
??Dim ArrayOfArray as integer??
Private sub AddPolygonToArray
for i = 0 to x
edges(i) = edge
angles(i) = angle
next
??ArrayOfArray(index) = new Array(edges,angles,NameOfPolygon,QuantityOfPolygon)??
End Sub
- Index,nameofpolygon and quantityofpolygon are not necessary, but they're integers if you need to know. If anything is incomprhensible, don't be afraid to ask. Thanks in advance