gpt4 book ai didi

c# - 如何一步获取列表中项目的索引?

转载 作者:IT王子 更新时间:2023-10-29 03:30:46 27 4
gpt4 key购买 nike

如何在不循环遍历的情况下找到列表中项目的索引?

目前这看起来不太好 - 在列表中搜索相同的项目两次,只是为了获得索引:

var oProp = something;

int theThingIActuallyAmInterestedIn = myList.IndexOf(myList.Single(i => i.Prop == oProp));

最佳答案

List.FindIndex Method怎么样? :

int index = myList.FindIndex(a => a.Prop == oProp);

This method performs a linear search; therefore, this method is an O(n) operation, where n is Count.

如果没有找到,则返回-1

关于c# - 如何一步获取列表中项目的索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17995706/

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