int[] a = new int[] { 1, 2, 4, 5 }; int[] b = new int[] { 1, 3, 4, 5 }; if (Enumerable.SequenceEqual(a,b)) { MessageBox.Show("一样"); } Enumerable.SequenceEqual(strs1, strs2); //通过使用相同类型的默认相等比较器对序列元素进行比较,以确定两个序列是否相等。