শেষ ম্যাচিং উপাদান খুঁজে পেতে, Array.LastIndexOf পদ্ধতি ব্যবহার করুন। পূর্ণসংখ্যা অ্যারেতে উপাদানটি উপস্থিত না থাকলে -1 প্রদান করে।
নিচের অ্যারে −
int[] val = { 97, 45, 76, 21, 89, 45 };
এখন, ধরা যাক আপনাকে উপাদান 45 এর শেষ সূচকটি অনুসন্ধান করতে হবে। এর জন্য, Array.LastIndexOf() পদ্ধতি ব্যবহার করুন -
int res = Array.LastIndexOf(val, 45);
নিম্নলিখিত একটি উদাহরণ -
উদাহরণ
using System; using System.Text; public class Demo { public static void Main() { int[] val = { 97, 45, 76, 21, 89, 45 }; // last Index of element 45 int res = Array.LastIndexOf(val, 45); // Display the index Console.WriteLine("Index of element 45 is = "+res); } }
আউটপুট
Index of element 45 is = 5