উপাদান সহ Hahtable সংগ্রহ সেট করুন।
Hashtable h = new Hashtable(); h.Add(1, "Jack"); h.Add(2, "Henry"); h.Add(3, "Ben"); h.Add(4, "Chris");
ধরা যাক এখন আপনাকে একটি মান খুঁজে বের করতে হবে, তারপর ContainsValue() পদ্ধতি ব্যবহার করুন।
আমরা এখানে "ক্রিস" মান খুঁজে পাচ্ছি -
h.ContainsValue(“Chris”);
উদাহরণ
using System; using System.Collections; public class Demo { public static void Main() { Hashtable h = new Hashtable(); h.Add(1, "Jack"); h.Add(2, "Henry"); h.Add(3, "Ben"); h.Add(4, "Chris"); Console.WriteLine("Keys and Values list:"); foreach (var key in h.Keys ) { Console.WriteLine("Key = {0}, Value = {1}",key , h[key]); } Console.WriteLine("Value Chris exists? "+h.ContainsValue("Chris")); Console.WriteLine("Value Tom exists? "+h.ContainsValue("Tom")); } }
আউটপুট
Keys and Values list: Key = 4, Value = Chris Key = 3, Value = Ben Key = 2, Value = Henry Key = 1, Value = Jack Value Chris exists? True Value Tom exists? False