■ Array 클래스의 Copy 정적 메소드를 사용해 바이트 배열을 병합하는 방법을 보여준다.
▶ Program.cs
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
namespace TestProject; /// <summary> /// 프로그램 /// </summary> class Program { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 바이트 배열 병합하기 - Merge(sourceArrayArray) /// <summary> /// 바이트 배열 병합하기 /// </summary> /// <param name="sourceArrayArray">소스 배열 배열</param> /// <returns>병합 바이트 배열</returns> private static byte[] Merge(params byte[][] sourceArrayArray) { int targetArrayLength = 0; foreach(byte[] sourceArray in sourceArrayArray) { targetArrayLength += sourceArray.Length; } byte[] targetArray = new byte[targetArrayLength]; int copyIndex = 0; foreach(byte[] sourceArray in sourceArrayArray) { int sourceArrayLength = sourceArray.Length; Array.Copy(sourceArray, 0, targetArray, copyIndex, sourceArrayLength); copyIndex += sourceArrayLength; } return targetArray; } #endregion #region 배열 출력하기 - PrintArray(sourceArray) /// <summary> /// 배열 출력하기 /// </summary> /// <param name="sourceArray">소스 배열</param> private static void PrintArray(byte[] sourceArray) { foreach(byte source in sourceArray) { Console.Write($"{source} "); } } #endregion #region 프로그램 시작하기 - Main() /// <summary> /// 프로그램 시작하기 /// </summary> private static void Main() { byte[] sourceArray1 = new byte[] { 10, 20 }; byte[] sourceArray2 = new byte[] { 30, 40, 50 }; byte[] sourceArray3 = new byte[] { 60, 70 }; byte[] targetArray = Merge(sourceArray1, sourceArray2, sourceArray3); Console.Write("소스 배열 1 : "); PrintArray(sourceArray1); Console.WriteLine(); Console.Write("소스 배열 2 : "); PrintArray(sourceArray2); Console.WriteLine(); Console.Write("소스 배열 3 : "); PrintArray(sourceArray3); Console.WriteLine(); Console.Write("병합 배열 : "); PrintArray(targetArray); Console.WriteLine(); } #endregion } |