G
GTi
If I use:
ArrayList TimeScale = new ArrayList();
TimeScale.Capacity = 1000;
TimeScale[20]="test 1"
The last line trow me an error:
Index was out of range. Must be non-negative and less than the size of
the collection.
Parameter name: index
Is there anything I don't get here?
ArrayList TimeScale = new ArrayList();
TimeScale.Capacity = 1000;
TimeScale[20]="test 1"
The last line trow me an error:
Index was out of range. Must be non-negative and less than the size of
the collection.
Parameter name: index
Is there anything I don't get here?