小用lambda表达式,查询数组里大于80的个数

 

本身对lambda没有涉及,这个小技巧简单记录下,方便以后用。

int[] scores = { 90, 71, 82, 93, 75, 82 };

// The call to Count forces iteration of the source
int highScoreCount = scores.Where(n => n > 80).Count();

int asad = highScoreCount;

posted @ 2013-12-02 09:18  幸福就好  阅读(885)  评论(0编辑  收藏  举报