在这里给我一个错误:
string.Compare(list[], list1[],true); <<<<<<
导致错误。
string[] list = { "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "v", "z" };
string[] list1 = { "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "v", "z" };
int result = string.Compare(list[], list1[], true);
if (result == 0)
{
Label1.Text += "Two strings are equal";
}
else if (result == 1)
{
Label1.Text += "Test String1 is greater than Test String2";
}
else if (result == -1)
{
Label1.Text += "Test String1 is less than Test String2";
}
答案 0 :(得分:6)
怎么样:
bool areSame = list.SequenceEqual(list1);
答案 1 :(得分:5)
使用Linq的SequenceEqual检查字符串数组是否相同
答案 2 :(得分:2)
答案 3 :(得分:1)