gpt4 book ai didi

c# - 如何在 linq 列表中选择指定的行?

转载 作者:行者123 更新时间:2023-12-04 02:22:19 26 4
gpt4 key购买 nike

我有一个 linq 列表。我想选择某一行。我是否必须执行 foreach 来遍历行以到达指定行,还是有其他方法。

我不想要的...

编辑

specifiedRow = 13;

-

var linqList = from a in random.List
where (a.id == idNum)
select new {a.id, a.name, a.address};
int counter = 0;
foreach (var item in linqList) {
if(counter == specifiedRow) {
//do stuff
}
}

我想要什么...

var linqList = from a in random.List
where (a.id == idNum)
//row is specified row in linqList
select new {a.id, a.name, a.address};

最佳答案

linqList.Skip(specifiedRow -1).FirstOrDefault()

这应该会给你你想要的项目,或者如果没有足够的行,则为 null

关于c# - 如何在 linq 列表中选择指定的行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4880125/

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