Dear programmers)) Please tell me - why in С# this line

string [this.LevelNumber] mass = new string [this.LevelNumber];

isn't permissible? What can be an equivalent for it?
Thank you for your answers)

Recommended Answers

All 2 Replies

string[] mass = new string[this.LevelNumber];

You tell a variable it will be an array ( string[] mass ). Then you assign space to hold the values ( = new string[this.LevelNumber]; )

commented: +fromme) +1

Momerath ,thanks for the reply)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.