摘要: 一、C# List根据值找到索引值方法 List<int> test = new List<int>(); int index = test .FindIndex(item=>item.Equals(888)); 二、查询List类中是否有指定的变量 int count = (from p in l 阅读全文
posted @ 2019-03-17 17:00 quanzhan 阅读(851) 评论(0) 推荐(0) 编辑