Linq中的Take和Skip

编程入门 行业动态 更新时间:2024-10-12 10:17:49

<a href=https://www.elefans.com/category/jswz/34/1768616.html style=Linq中的Take和Skip"/>

Linq中的Take和Skip

原文:(v=vs.110).aspx

(v=vs.110).aspx

如果 count 小于等于零,则不枚举 source,并返回空的 IEnumerable<T>。

Take<TSource> 和 Skip<TSource> 方法在功能上补充。 如果给定一个序列 coll 和一个整数 n,则连接 coll.Take(n) 和 coll.Skip(n) 的结果会生成与 coll 相同的序列。

 int[] grades = { 59, 82, 70, 56, 92, 98, 85 };IEnumerable<int> topThreeGrades =grades.OrderByDescending(grade => grade).Take(3);Console.WriteLine("The top three grades are:");foreach (int grade in topThreeGrades){Console.WriteLine(grade);}/*This code produces the following output:The top three grades are:989285*/

int[] grades = { 59, 82, 70, 56, 92, 98, 85 };IEnumerable<int> lowerGrades =grades.OrderByDescending(g => g).Skip(3);Console.WriteLine("All grades except the top three are:");foreach (int grade in lowerGrades){Console.WriteLine(grade);}/*This code produces the following output:All grades except the top three are:82705956*/



更多推荐

Linq中的Take和Skip

本文发布于:2024-02-26 07:35:26,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1701757.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:Linq   Skip

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!