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

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

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

4

1 回答 1

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);
于 2013-02-13T22:52:57.717 回答