public static void Main()
string text = "whatever";
byte[] test = System.Text.Encoding.ASCII.GetBytes(text);
byte[] another = System.Text.Encoding.ASCII.GetBytes(text);
bool eq = test.Equals(another);
bool seq = test.SequenceEqual(another);
Console.WriteLine(" Equals: "+eq.ToString());
Console.WriteLine("SequenceEqual: "+seq.ToString());