तत्वों को अंत से छोड़ें और स्किपलास्ट () विधि का उपयोग करके शेष तत्वों को वापस करें।
निम्नलिखित एक सरणी है।
int[] marks = { 45, 88, 50, 90, 95, 85 };
अब, हम SkipLast () और लैम्ब्डा एक्सप्रेशन का उपयोग करके अंत से दो तत्वों को छोड़ देते हैं, लेकिन यह तत्वों को अवरोही क्रम में व्यवस्थित करने के बाद किया जाता है।
IEnumerable<int> selMarks = marks.AsQueryable().OrderByDescending(s => s).SkipLast(2);
उदाहरण
using System; using System.Linq; using System.Collections.Generic; public class Demo { public static void Main() { int[] marks = { 45, 88, 50, 90, 95, 85 }; IEnumerable<int> selMarks = marks.AsQueryable().OrderByDescending(s => s).SkipLast(2); Console.WriteLine("Skipped the marks of last two students..."); foreach (int res in selMarks) Console.WriteLine(res); } }
आउटपुट
Skipped the marks of last two students... 95 90 88 85