Is there a better way to examine whether two string arrays have the same contents than this?
string[] first = new string[]{\"cat\",\"and\",\"mouse\"}; string[] s
Enumerable.SequenceEquals if they're supposed to be in the same order.