摘要: 一、获取集合内重复值 public void GetDuplicateValue() { List<string> lisA = new List<string> { "A", "B", "C", "A" }; //方式一 借助字典 Dictionary<string, int> dic = new 阅读全文
posted @ 2021-04-30 15:17 进步者One 阅读(3996) 评论(0) 推荐(0) 编辑