Để hiển thị ba phần tử cuối cùng từ danh sách, hãy sử dụng phương thức Take (). Để đảo ngược nó, hãy sử dụng phương thức Reverse ().
Đầu tiên, khai báo một danh sách và thêm các phần tử vào đó -
List<string> myList = new List<string>(); myList.Add("One"); myList.Add("Two"); myList.Add("Three"); myList.Add("Four");
Bây giờ, sử dụng phương thức Take () với Reverse () để hiển thị ba phần tử cuối cùng từ danh sách theo thứ tự ngược lại -
myList.Reverse<string>().Take(3);
Sau đây là mã -
Ví dụ
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); } } }
Đầu ra
Four Three Two