I have a 2 dimensional array.
Like,
(0,1)
(0,2)
(0,3)
(1,1)
(1,2)
(1,3)
(2,1)
(2,2)
(2,3)
How can i use Array.Copy
to copy only the 2nd index in a new array.
Like only,
(2,1)
(2,2)
(2,3)
Or is there any other way.