TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Bevan Shervey
NA
10
0
Resize Mulit-dimensional array
Jun 29 2007 5:42 PM
Is this possible?
public
string
[,] MyArray =
new
string
[99,999];
the above works but is either too large or not big enough.
public
string
[,] MainKeys =
new
string
[,];
generates error "Array creation must have array size or array initializer"
Array.Resize(
ref
MyArray,100,1000);
generates error "'System.Array' does not contain a definition for 'Resize'".
Reply
Answers (
2
)
Changing the backcolor of a single row in a webtable
ArrayList in C#