C# 程序以逆序显示列表中的后三个元素


要显示列表中的后三个元素,请使用 Take() 方法。要对其进行逆序,请使用 Reverse() 方法。

首先,声明一个列表并向其中添加元素 -

List<string> myList = new List<string>();
myList.Add("One");
myList.Add("Two");
myList.Add("Three");
myList.Add("Four");

现在,使用 Take() 方法和 Reverse() 以逆序显示列表中的后三个元素 -

myList.Reverse<string>().Take(3);

以下是代码 -

示例

 实时演示

using System;
using System.Linq;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      List<string> myList = new List<string>();
      myList.Add("One");
      myList.Add("Two");
      myList.Add("Three");
      myList.Add("Four");
      // first three elements
      var res = myList.Reverse<string>().Take(3);
      // displaying last three elements
      foreach (string str in res) {
         Console.WriteLine(str);
      }
   }
}

输出

Four
Three
Two

更新于: 2020 年 6 月 22 日

1K+ 浏览

开启您的职业生涯

完成课程获得认证

开始
广告