如何从特定元素开始在“类型列表”中搜索元素?
我可以使用以下for循环实现相同的目的:
bool found = false;
for(int i=counter+1;i<=lstTags.Count()-1;i++)
{
if (lstTags[i].PlateFormID == plateFormID)
{
found = true;
break;
}
}
但是,我想知道是否可以通过以下内置功能以更有效的方式完成此操作:
var nextItem=lstTags.FirstOrDefault(a=>a.PlateFormID==plateFormID, startIndex);
最佳答案
您可以使用Enumerable.Skip
:
var nextItem = lstTags.Skip(startIndex).FirstOrDefault(a => a.PlateFormID == plateFormID);
这将过滤掉第一个
startIndex
元素,然后在过滤的可枚举中找到第一个匹配的PlateFormID
。