Does the .Net framework have any built-in support for joining arrays?
I couldn't find anything useful, and the things I tried didn't work. Is the only way to do it by adding each individual element?
byte[] bFirstArray = new byte[6] { 1, 2, 3, 4, 5, 6 };
byte[] bSecondArray = new byte[6] { 7, 8, 9, 10, 11, 12 };
byte[] bThirdArray = null;
//bThirdArray = (byte[])(bFirstArray.ToString() + bSecondArray.ToString()); //Doesn't work.
//bThirdArray = new byte[] { bFirstArray, bSecondArray }; //Doesn't work.