Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个二维数组。 比如, (0,1) (0,2) (0,3) (1,1) (1,2) (1,3) (2,1) (2,2) (2,3)
我如何使用Array.Copy仅复制新数组中的第二个索引。 只喜欢 (2,1) (2,2) (2,3)
Array.Copy
或者有没有其他方法。
Array.copy(source_array, 6, destin_array, )