码迷,mamicode.com
首页 > 其他好文 > 详细

List<string>里 每个元素重复了多少次

时间:2015-09-23 10:29:05      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:

List<string>里 每个元素重复了多少次


static void Main(string[] args) { List<string> list = new List<string>(); list.Add("aaa"); list.Add("aa"); list.Add("dd"); list.Add("aaa"); list.Add("dd"); list.Add("aa"); list.Add("aaa"); int a = RepeatTimes(list, "aaa");//某个对象重复有多少次 //打印出重复多少次 foreach (var item in list.GroupBy(s => s)) { Console.WriteLine("{0}:{1}次", item.Key, item.Count()); } } /// <summary> /// 某个元素重复次数 /// </summary> /// <param name="L"></param> /// <param name="text"></param> /// <returns></returns> private static int RepeatTimes(List<string> list, string text) { int num = 0; foreach (string str in list) if (str == text) num++; return num; }

 

List<string>里 每个元素重复了多少次

标签:

原文地址:http://www.cnblogs.com/Luouy/p/4831238.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!