gpt4 book ai didi

c# - 检查两个字符串数组是否等价

转载 作者:行者123 更新时间:2023-11-30 19:07:50 25 4
gpt4 key购买 nike

有没有比这更好的方法来检查两个字符串数组是否具有相同的内容?

string[] first = new string[]{"cat","and","mouse"};
string[] second = new string[]{"cat","and","mouse"};

bool contentsEqual = true;

if(first.Length == second.Length){
foreach (string s in first)
{
contentsEqual &= second.Contains(s);
}
}
else{
contentsEqual = false;
}


Console.WriteLine(contentsEqual.ToString());// true

最佳答案

Enumerable.SequenceEquals如果它们应该按相同的顺序排列。

关于c# - 检查两个字符串数组是否等价,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3250887/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com