List<String> hello = new List<String>();
hello.Add("red");
hello.Add("blue");
如何使用索引搜索此列表以获取"red"
0
?我尝试过使用很多不同的方法,但都失败了。
答案 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
var word = hello.ElementAt(0);