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
热门推荐
10 同事换单位简短祝福语
11 谢谢朋友的祝福语简短
12 立秋节气简短祝福语
13 新房祝福语简短10字
14 长辈新年祝福语大全简短
15 新年给大家简短祝福语
16 生日祝福语简短独特姑姑
17 芭比的婚礼祝福语简短
18 邀请新人祝福语简短英文