স্ট্রিং কালেকশনের শেষে একটি স্ট্রিং যোগ করতে, কোডটি নিম্নরূপ −
উদাহরণ
using System;
using System.Collections.Specialized;
public class Demo {
public static void Main() {
StringCollection strCol = new StringCollection();
strCol.Add("John");
strCol.Add("Tim");
strCol.Add("Gary");
strCol.Add("Katie");
strCol.Add("Andy");
strCol.Add("Amy");
strCol.Add("Scarlett");
strCol.Add("Jacob");
Console.WriteLine("Elements in StringCollection...");
foreach(Object ob in strCol) {
Console.WriteLine(ob);
}
Console.WriteLine("Count of elements = "+strCol.Count);
}
} আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেElements in StringCollection... John Tim Gary Katie Andy Amy Scarlett Jacob Count of elements = 8
উদাহরণ
আসুন আরেকটি উদাহরণ দেখি -
using System;
using System.Collections.Specialized;
public class Demo {
public static void Main() {
StringCollection strCol = new StringCollection();
strCol.Add("One");
strCol.Add("Two");
strCol.Add("Three");
strCol.Add("Four");
strCol.Add("Five");
Console.WriteLine("Elements in StringCollection...");
foreach(Object ob in strCol) {
Console.WriteLine(ob);
}
}
} আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেElements in StringCollection... One Two Three Four Five