অ্যারেলিস্টে নির্দিষ্ট সূচকে উপাদান পেতে বা সেট করতে, কোডটি নিম্নরূপ -
উদাহরণ
using System; using System.Collections; public class Demo { public static void Main() { ArrayList arrList = new ArrayList(); arrList.Add("Laptop"); arrList.Add("Desktop"); arrList.Add("Notebook"); arrList.Add("Ultrabook"); arrList.Add("Tablet"); arrList.Add("Headphone"); arrList.Add("Speaker"); Console.WriteLine("Elements in ArrayList..."); foreach(string str in arrList) { Console.WriteLine(str); } Console.WriteLine("Element at index 5 = " + arrList[5]); } }
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেElements in ArrayList... Laptop Desktop Notebook Ultrabook Tablet Headphone Speaker Element at index 5 = Headphone
উদাহরণ
আসুন আরেকটি উদাহরণ দেখি -
using System; using System.Collections; public class Demo { public static void Main() { ArrayList arrList = new ArrayList(); arrList.Add("Laptop"); arrList.Add("Desktop"); arrList.Add("Notebook"); arrList.Add("Ultrabook"); arrList.Add("Tablet"); arrList.Add("Headphone"); arrList.Add("Speaker"); Console.WriteLine("Elements in ArrayList..."); foreach(string str in arrList) { Console.WriteLine(str); } Console.WriteLine("Element at index 5 = " + arrList[5]); arrList[5] = "SSD"; Console.WriteLine("Element at index 5 (Updated) = " + arrList[5]); } }
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেElements in ArrayList... Laptop Desktop Notebook Ultrabook Tablet Headphone Speaker Element at index 5 = Headphone Element at index 5 (Updated) = SSD