একটি অ্যারের শেষ থেকে উপাদানগুলি ফেরত দিতে TakeLast() পদ্ধতি ব্যবহার করুন৷
আসুন প্রথমে একটি অ্যারে ঘোষণা এবং শুরু করি।
int[] prod = { 110, 290, 340, 540, 456, 698, 765, 789};
এখন, শেষ তিনটি উপাদান পাওয়া যাক।
IEnumerable<int> units = prod.AsQueryable().TakeLast(3);
আসুন আমরা সম্পূর্ণ কোড দেখি।
উদাহরণ
using System; using System.Linq; using System.Collections.Generic; public class Demo { public static void Main() { int[] prod = { 110, 290, 340, 540, 456, 698, 765, 789}; // value of last three products IEnumerable<int> units = prod.AsQueryable().TakeLast(3); foreach (int res in units) { Console.WriteLine(res); } } }
আউটপুট
698 765 789