在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
热门推荐
10 八一幼儿祝福语大全简短
11 公司乔迁食堂祝福语简短
12 婚礼结束聚餐祝福语简短
13 儿媳买车妈妈祝福语简短
14 毕业送礼老师祝福语简短
15 同事辞职正常祝福语简短
16 恭贺新婚文案祝福语简短
17 金店立秋祝福语简短英文
18 婆婆高寿祝福语大全简短