使用索引在列表中查找值

本文关键字:查找 列表 索引 | 更新日期: 2023-09-27 17:59:27

List<String> hello = new List<String>();
hello.Add("red");
hello.Add("blue");

如何使用索引搜索此列表以获得"red",即0?我试过用很多不同的方法,但都失败了。

使用索引在列表中查找值

如果我理解你的问题,.FindIndex Method

List<String> hello = new List<String>();
hello.Add("red");
hello.Add("blue");
var index = hello.FindIndex(c => c == "red");
var word = hello[index]; //<-- get the word 

最后使用.ElementAt Method

var word = hello.ElementAt(0);