배열의 값을 복사하는데에는 여러가지 방법이 있다. 일단은 loop를 태워서 직접 copy를 하는 방법이 있고, Array.Copy 또는 Buffer.BlockCopy를 사용하는 방법이 있다. 아래는 성능 평가를 위한 코드를 첨부한다. static int[,] testArray = new int[800, 600]; static void Main(string[] args) { for (int i = 0; i < 800; i++) { for (int j = 0; j < 600; j++) { testArray[i, j] = 0; } } long ms = 0; int count = 10; for (int i = 0; i < count; i++) { ms += BaseCopy(); } Console.WriteLin..