किसी सूची से अंतिम तीन तत्वों को प्रदर्शित करने के लिए, टेक () विधि का उपयोग करें। इसे उलटने के लिए, रिवर्स () विधि का उपयोग करें।
सबसे पहले, एक सूची घोषित करें और उसमें तत्व जोड़ें -
List<string> myList = new List<string>(); myList.Add("One"); myList.Add("Two"); myList.Add("Three"); myList.Add("Four");
अब, सूची से अंतिम तीन तत्वों को उल्टे क्रम में प्रदर्शित करने के लिए रिवर्स () के साथ टेक () विधि का उपयोग करें -
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