I want this data declared as an array for C#:
file1: data1 [rect1] , data2 [rect2] , data3 [rect3]
file2: data1 [rect1] , data2 [rect2]
file3: data1 [rect1] , data2 [rect2] , data3 [rect3], data4 [rect4]
...
file and data are strings, and rect is Rectangle object
It doesn't have to be an array, but I think array would be the best solution for this.
I need to access the data stored in array.
For example I should be able to read all dataX when I give "file1"..
Also, when I give "file1" and "data1" I should be able to access "rect1"..
Could you explain how I could do this?