সারির শেষে একটি বস্তু যোগ করতে, কোডটি নিম্নরূপ -
উদাহরণ
using System; using System.Collections.Generic; public class Demo { public static void Main(){ Queue<string> queue = new Queue<string>(); queue.Enqueue("Electronics"); queue.Enqueue("Accessories"); queue.Enqueue("Toys"); queue.Enqueue("Books"); queue.Enqueue("Furniture"); queue.Enqueue("Clothing"); queue.Enqueue("Footwear"); queue.Enqueue("Cookware"); queue.Enqueue("Pet Supplies"); Console.WriteLine("Elements in the Queue..."); foreach(var element in queue){ Console.WriteLine(element); } Console.WriteLine("Do the queue has the element Books? = "+queue.Contains("Books")); } }
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেElements in the Queue... Electronics Accessories Toys Books Furniture Clothing Footwear Cookware Pet Supplies Do the queue has the element Books? = True
উদাহরণ
এখন আরেকটি উদাহরণ দেখা যাক -
using System; using System.Collections.Generic; public class Demo { public static void Main(){ Queue<string> queue = new Queue<string>(); queue.Enqueue("Gary"); queue.Enqueue("Jack"); queue.Enqueue("Ryan"); queue.Enqueue("Kevin"); queue.Enqueue("Mark"); queue.Enqueue("Jack"); queue.Enqueue("Ryan"); queue.Enqueue("Kevin"); Console.Write("Count of elements = "); Console.WriteLine(queue.Count); queue.Clear(); Console.Write("Count of elements (updated) = "); Console.WriteLine(queue.Count); } }
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেCount of elements = 8 Count of elements (updated) = 0