কম্পিউটার

C# লিঙ্ক স্কিপ() পদ্ধতি


উপাদানগুলি এড়িয়ে যান এবং Skip() পদ্ধতি ব্যবহার করে অবশিষ্ট উপাদানগুলি ফেরত দিন৷

নিম্নলিখিতটি একটি অ্যারে৷

int[] marks = { 80, 55, 79, 99 };

এখন, ল্যাম্বডা এক্সপ্রেশন ব্যবহার করে 2টি উপাদান বাদ দেওয়া যাক, তবে এটি উপাদানগুলিকে অবরোহ ক্রমে সাজানোর পরে করা হয়।

IEnumerable<int> selMarks = marks.AsQueryable().OrderByDescending(s => s).Skip(2);

উদাহরণ

using System;
using System.Linq;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      int[] marks = { 80, 55, 79, 99 };
      IEnumerable<int> selMarks = marks.AsQueryable().OrderByDescending(s => s).Skip(2);
      Console.WriteLine("Skipped the result of 1st two students...");
      foreach (int res in selMarks) {
         console.WriteLine(res);
      }
   }
}

  1. C# Linq ইন্টারসেক্ট পদ্ধতি

  2. C# Linq যেখানে পদ্ধতি

  3. C# Linq ডিস্টিনক্ট() পদ্ধতি

  4. C# এ পদ্ধতি এড়িয়ে যান