C# Linq

C# Linq,第1张

概述无聊一下,感觉有点用记录一下,^_^  用过linq的请绕道... List<Test> list = new List<Test>(); list.Add(new Test { score = 10, name = "张君宝" }); list.Add(new Test { score = 20, name = "刘惜君

无聊一下,感觉有点用记录一下,^_^  用过linq的请绕道...

            List<Test> List = new List<Test>();            List.Add(new Test { score = 10,name = "张君宝" });            List.Add(new Test { score = 20,name = "刘惜君" });            List.Add(new Test { score = 20,name = "刘惜君" });            List.Add(new Test { score = 30,name = "八戒" });            int total = (from temp in List                             where temp.name == "刘惜君"                             select temp.age).Count();            int score = (from temp in List                         where temp.name == "刘惜君"                        select temp.score).Sum();            this.textBox1.Text = "刘惜君:" + total + "人" + score + "score";            MessageBox.Show(this.textBox1.Text);   //return 刘惜君:2人40score      
总结

以上是内存溢出为你收集整理的C# Linq全部内容,希望文章能够帮你解决C# Linq所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1214267.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存