Hi,
how can I declare a dynami multidimensional array? I have this right now for 2-dim array
protected CellProperties[,] CellValuesContainer = new CellProperties[500,500];
and this for one-dim array
protected RowProperties[] RowValuesContainer = new RowProperties[100];
Obviously I need those to be dynamic
Thanks!!!
how can I declare a dynami multidimensional array? I have this right now for 2-dim array
protected CellProperties[,] CellValuesContainer = new CellProperties[500,500];
and this for one-dim array
protected RowProperties[] RowValuesContainer = new RowProperties[100];
Obviously I need those to be dynamic
Thanks!!!