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
var word = hello.ElementAt(0);