C#程序以相反的顺序显示列表中的最后三个元素
要显示列表中的最后三个元素,请使用Take()
方法。要反转它,请使用Reverse()
方法。
首先,声明一个列表并向其中添加元素-
List<string> myList = new List<string>(); myList.Add("One"); myList.Add("Two"); myList.Add("Three"); myList.Add("Four");
现在,使用Take()
with方法以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"); //前三个元素 var res = myList.Reverse<string>().Take(3); //显示最后三个元素 foreach (string str in res) { Console.WriteLine(str); } } }
输出结果
Four Three Two