■ Buffer 클래스의 BlockCopy 메소드를 사용해 배열을 복사하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
using System; Random random = new Random(DateTime.Now.Millisecond); byte[] sourceArray1 = new byte[1000000]; byte[] sourceArray2 = new byte[1000000]; byte[] sourceArray3 = new byte[1000000]; byte[] targetArray = new byte[3000000]; for(int i = 0; i < 1000000; i++) { sourceArray1[i] = (byte)random.Next(0, 255); sourceArray2[i] = (byte)random.Next(0, 255); sourceArray3[i] = (byte)random.Next(0, 255); } Buffer.BlockCopy(sourceArray1, 0, targetArray, 0 , sourceArray1.Length); Buffer.BlockCopy(sourceArray2, 0, targetArray, sourceArray1.Length , sourceArray2.Length); Buffer.BlockCopy(sourceArray3, 0, targetArray, sourceArray1.Length + sourceArray2.Length, sourceArray3.Length); |