Both the ==
operator and the Equals method will test reference equality. Since you have two separate arrays, they will never be equal.
Since you want to test that both arrays have the same content in the same order, try using the SequenceEqual method instead.