There are two byte arrays which are populated with different values.
byte[] Array1 = new byte[5]; byte[] Array2 = new byte[5];
Then, I need
Array1.CopyTo(Array2, 0);
MSDN