查找列表中 int 的索引
有没有办法从列表中获取 int 的索引? 寻找类似 list1.FindIndex(5)
的内容,我想在列表中找到 5 的位置。
Is there a way to get the index of an int from a list?
Looking for something like list1.FindIndex(5)
where I want to find the position of 5 in the list.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
使用列表的
.IndexOf()
方法。该方法的规范可以在 MSDN 上找到。Use the
.IndexOf()
method of the list. Specs for the method can be found on MSDN.FindIndex 似乎就是您要查找的内容:
FindIndex (谓词)
用法:
示例:
FindIndex seems to be what you're looking for:
FindIndex(Predicate<T>)
Usage:
Example:
尝试 IndexOf。
Try IndexOf.
如果您认为 C# 中的通用列表像数组一样从 0 开始索引,那就更容易了。这意味着你可以使用类似的东西:
It's even easier if you consider that the Generic List in C# is indexed from 0 like an array. This means you can just use something like: