ListDictionary-এ মান সম্বলিত একটি IC Collection পেতে, কোডটি নিম্নরূপ -
উদাহরণ
using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ ListDictionary listDict = new ListDictionary(); listDict.Add("1", "Laptop"); listDict.Add("2", "Tablet"); listDict.Add("3", "Desktop"); listDict.Add("4", "Speaker"); listDict.Add("5", "Earphone"); listDict.Add("6", "Headphone"); ICollection col = listDict.Values; foreach(String s in col){ Console.WriteLine(s); } } }
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেLaptop Tablet Desktop Speaker Earphone Headphone
উদাহরণ
আসুন আরেকটি উদাহরণ দেখি -
using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ ListDictionary listDict = new ListDictionary(); listDict.Add("A", "Tom"); listDict.Add("B", "John"); listDict.Add("C", "Kevin"); listDict.Add("D", "Tim"); ICollection col = listDict.Values; foreach(String s in col){ Console.WriteLine(s); } } }
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেTom John Kevin Tim