C# List根据值找到索引值方法

List<int> test = new List<int>();

int index = test .FindIndex(item=>item.Equals(888));

你可能感兴趣的:(C# List根据值找到索引值方法)