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
Maha
NA
0
326k
Three dimensional array
Mar 31 2014 10:06 AM
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] {??? ???? ???? }
Reply
Answers (
4
)
Hi... I wanna add datum from CSV into SQL server DB table.
Renaming and saving file each time code executes