📅  最后修改于: 2023-12-03 15:14:28.238000             🧑  作者: Mango
如果您正在使用C#编写应用程序并且需要从StringCollection中删除特定索引处的字符串,您可以按照以下步骤操作:
using System.Collections.Specialized;
StringCollection strColl = new StringCollection();
strColl.Add("one");
strColl.Add("two");
strColl.Add("three");
strColl.RemoveAt(1);
for (int i = 0; i < strColl.Count; i++)
{
Console.WriteLine(strColl[i]);
}
这就是从StringCollection的指定索引中删除字符串的方法。下面是完整的代码示例,以供您参考:
using System;
using System.Collections.Specialized;
class Program
{
static void Main(string[] args)
{
StringCollection strColl = new StringCollection();
strColl.Add("one");
strColl.Add("two");
strColl.Add("three");
strColl.RemoveAt(1);
for (int i = 0; i < strColl.Count; i++)
{
Console.WriteLine(strColl[i]);
}
Console.ReadKey();
}
}
这将输出以下内容:
one
three