I have two identical byte arrays in the following segment of code:
/// ///A test for Bytes /// [TestMethod()]
byte[] a = new byte[] {x, y, z...}; byte[] b = new byte[] {x, y, z...}; assertArrayEquals(a , b );
will compare the stuff... It works for me..