gpt4 book ai didi

c# - foreach循环中List <>中的第一个或最后一个元素

转载 作者:太空宇宙 更新时间:2023-11-03 17:51:54 26 4
gpt4 key购买 nike

我有一个List<string>,我想标识列表中的第一个或最后一个元素,以便标识与该项目有关的其他函数。

例如。

foreach (string s in List)
{
if (List.CurrentItem == (List.Count - 1))
{
string newString += s;
}
else
{
newString += s + ", ";
}
}


我将如何定义 List.CurrentItem?在这种情况下, for循环会更好吗?

最佳答案

你可以这样使用柜台

         int counter = 0 ;
foreach (string s in List)
{
if (counter == 0) // this is the first element
{
string newString += s;
}
else if(counter == List.Count() - 1) // last item
{
newString += s + ", ";
}else{
// in between
}
counter++;
}

关于c# - foreach循环中List <>中的第一个或最后一个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23124627/

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