我想以最快的方式比较 2 个字符串数组 。
我得到了类似下面的东西。
这会是正确的做法吗。或者有没有更好的办法
bool matching=false;
//say templateArr is the template array and dataArr as array to be compared
string[] templateArr = {"Dictionary_type","Translation_EN" };
string[] dataArr = { "Dictionary_type", "Translation_EN" };
if (templateArr.Union(dataArr).Distinct().Count() == templateArr.Count())
matching = true;