C# 程序从末尾跳过数组元素
声明一个数组并初始化元素。
int[] marks = { 45, 50, 60, 70, 85 };
使用 SkipLast() 方法跳过数组元素,从末尾算起。
IEnumerable<int> selMarks = marks.AsQueryable().SkipLast(3);
元素被跳过,剩余元素返回如下所示 -
示例
using System; using System.Linq; using System.Collections.Generic; public class Demo { public static void Main() { int[] marks = { 45, 50, 60, 70, 85 }; Console.WriteLine("Array..."); foreach (int res in marks) Console.WriteLine(res); IEnumerable<int> selMarks = marks.AsQueryable().SkipLast(3); Console.WriteLine("Array after skipping last 3 elements..."); foreach (int res in selMarks) Console.WriteLine(res); } }
输出
Array... 45 50 60 70 85 Array after skipping last 3 elements... 45 50
广告