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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Redim multiD array

Status
Not open for further replies.

PatCSharp

Programmer
Joined
May 3, 2006
Messages
5
Location
US
Since Redim does not exist in C#, How do I convert this in C#?

Dim basePoints() As Double
ReDim basePoints(AUTO_PTS - 1, 1)
 
I would suggest the use of an ArrayList rather than an array. Otherwise you'll need to make your own functions to add and remove elements to and from and array I believe.

[red]"... isn't sanity really just a one trick pony anyway?! I mean, all you get is one trick, rational thinking, but when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick[/red]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top