gpt4 book ai didi

c# - 如何删除添加到列表中的最后一个元素?

转载 作者:IT王子 更新时间:2023-10-29 04:09:57 31 4
gpt4 key购买 nike

我在 c# 中有一个列表,我在其中添加列表字段。现在在添加时我必须检查条件,如果条件满足,那么我需要从列表中删除添加的最后一行。这是我的示例代码..

    List<> rows = new List<>();
foreach (User user in users)
{
try
{
Row row = new Row();
row.cell = new string[11];
row.cell[1] = user."";
row.cell[0] = user."";
row.cell[2] = user."";

rows.Add(row);

if (row.cell[0].Equals("Something"))
{

//here i have to write code to remove last row from the list
//row means all the last three fields

}

}

所以我的问题是如何在 C# 中从列表中删除最后一行。请帮助我。

最佳答案

我认为最有效的方法是使用 RemoveAt :

rows.RemoveAt(rows.Count - 1)

关于c# - 如何删除添加到列表中的最后一个元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23245569/

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