array<Byte>^one = gcnew array<Byte>(size);
array<Byte>^two = gcnew array<Byte>(size);
array<Byte>^three = gcnew array<Byte>(size);
array<Byte>^complex = gcnew array<Byte>(3*size);
I want to copy data from first, second and third array into complex array. How do I copy ?