使用索引在List中查找值?

时间:2013-02-13 22:12:44

标签: c# list

List<String> hello = new List<String>();

hello.Add("red");
hello.Add("blue");

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

1 个答案:

答案 0 :(得分:2)

如果我理解您的问题,请.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);