Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dynamic multi-dimensional array

Status
Not open for further replies.

mais123

Programmer
Dec 26, 2007
36
US
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!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top