有时候我们需要将一个数组的数据 Copy给另一个数组,这个我们平常用for就可以搞定,但终究还是麻烦了些。所以推荐大家使用Array.Copy这个方法,示例如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
using System; class Program { static void Main() { // // Instantiate the source array. // int[] source = new int[5]; source[0] = 1; source[1] = 2; source[2] = 3; source[3] = 4; source[4] = 5; // // Instantiate and allocate the target array. // int[] target = new int[5]; // // Copy the source to the target. // Array.Copy(source, target, 5); // // Display the target array. // Console.WriteLine("--- Target array ---"); foreach (int value in target) { Console.WriteLine(value); } } } |
- 本文固定链接: http://www.u3d8.com/?p=575
- 转载请注明: 网虫虫 在 u3d8.com 发表过