Tech
Forums
Jobs
Books
Events
Videos
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Contribute
An Article
A Blog
A Video
An Ebook
An Interview Question
Register
Login
4
Answers
Three dimensional array
Maha
10y
1k
1
Reply
int[,] ar = new int[2, 3] { { 1, 2, 3 }, { 4, 5, 6 } }
Above 2D array can be imagined like following way
1 2 3
4 5 6
2 rows and 3 columns
2*3 = 6 elements
How can we imagine following 3D array.
int[,,] ar = new int[2, 3, 2] {??? ???? ???? }
Post
Reset
Cancel
Answers (
4
)
Next Recommended Forum
Hi... I wanna add datum from CSV into SQL server DB table.
Renaming and saving file each time code executes