निम्नलिखित हमारी सरणी है -
int[] points = { 210, 250, 300, 350, 420};
तत्वों को छोड़ने के लिए स्किप () विधि का उपयोग करें। संख्या को एक तर्क के रूप में जोड़ें जो लौटाए जाने वाले तत्वों की संख्या प्रदर्शित करता है।
IEnumerable<int> skipEle = points.AsQueryable().OrderByDescending(s => s).Skip(3);
उदाहरण
using System; using System.Linq; using System.Collections.Generic; public class Demo { public static void Main() { int[] points = { 210, 250, 300, 350, 420}; Console.WriteLine("Initial array..."); foreach (int res in points) Console.WriteLine(res); IEnumerable<int> skipEle = points.AsQueryable().OrderByDescending(s => s).Skip(3); Console.WriteLine("Skipped 3 elements..."); foreach (int res in skipEle) Console.WriteLine(res); } }
आउटपुट
Initial array... 210 250 300 350 420 Skipped 3 elements... 250 210