C#のStringCollectionの指定されたインデックスに挿入します
StringCollectionの指定されたインデックスに挿入するには、コードは次のとおりです-
例
using System; using System.Collections.Specialized; public class Demo { public static void Main(){ StringCollection strCol = new StringCollection(); strCol.Add("Accessories"); strCol.Add("Books"); strCol.Add("Electronics"); Console.WriteLine("StringCollection elements..."); foreach (string res in strCol){ Console.WriteLine(res); } strCol.Insert(2, "Headphone"); Console.WriteLine("StringCollection elements...UPDATED"); foreach (string res in strCol){ Console.WriteLine(res); } } }
出力
これにより、次の出力が生成されます-
StringCollection elements... Accessories Books Electronics StringCollection elements...UPDATED Accessories Books Headphone Electronics
例
別の例を見てみましょう-
using System; using System.Collections.Specialized; public class Demo { public static void Main(){ StringCollection strCol = new StringCollection(); strCol.Add("Laptop"); strCol.Add("Desktop"); strCol.Add("Tablet"); strCol.Add("Speakers"); Console.WriteLine("StringCollection elements..."); foreach (string res in strCol){ Console.WriteLine(res); } strCol.Insert(2, "Headphone"); strCol.Insert(3, "Alienware"); Console.WriteLine("StringCollection elements...UPDATED"); foreach (string res in strCol){ Console.WriteLine(res); } strCol.Insert(4, "E-Book Reader"); strCol.Insert(5, "Monitor"); strCol.Insert(6, "HDD"); strCol.Insert(7, "SSD"); Console.WriteLine("StringCollection elements...UPDATED"); foreach (string res in strCol){ Console.WriteLine(res); } } }
出力
これにより、次の出力が生成されます-
StringCollection elements... Laptop Desktop Tablet Speakers StringCollection elements...UPDATED Laptop Desktop Headphone Alienware Tablet Speakers StringCollection elements...UPDATED Laptop Desktop Headphone Alienware E-Book Reader Monitor HDD SSD Tablet Speakers
-
C#でStringCollectionの指定されたインデックスから削除します
StringCollectionの指定されたインデックスから削除するには、コードは次のとおりです- 例 using System; using System.Collections.Specialized; public class Demo { public static void Main() { StringCollection stringCol = new StringCollection(); String[] arr = new String[] { "100&
-
C#でSortedListの指定されたインデックスから削除します
SortedListの指定されたインデックスから削除するには、コードは次のとおりです- 例 using System; using System.Collections; public class Demo { public static void Main(String[] args) { SortedList sortedList = new SortedList(); sortedList.Add("A", "1"); &nb