gpt4 book ai didi

c# - 如何在 foreach 循环中验证元素是否在集合中的最后一个?

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

我有一个 foreach 循环,我需要在其中验证元素是否在我正在迭代的集合中的最后一个。我试过的:

foreach (var character in list) // list is of type `string` 
{
if (character == list.Last())
{

}
}

但在这种情况下,如果我有 "la la la" if 语句将在第二个字符上执行。

问题如何编写if语句使其在访问序列的最后一个元素时执行?

最佳答案

我建议使用索引而不是对象引用进行迭代

for (int i = 0; i <= list.Count-1; i++)
{
if (i == list.Count-1)
{
// so something special with last item
}
}

关于c# - 如何在 foreach 循环中验证元素是否在集合中的最后一个?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16144860/

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