📌  相关文章
📜  C#|在StringCollection中的指定索引处插入(1)

📅  最后修改于: 2023-12-03 15:00:15.538000             🧑  作者: Mango

C# | 在 StringCollection 中的指定索引处插入

在 C# 编程中,StringCollection 是一个不可变的集合,其中的元素按照添加的顺序排列。如果我们需要往 StringCollection 中插入元素,就需要使用 Insert 方法。本文将介绍如何在 StringCollection 中的指定索引处插入元素。

语法

Insert 方法的语法如下:

public void Insert(int index, string value);

其中,index 参数是指要插入元素的索引位置,从 0 开始计数;value 参数则是要插入的元素。

示例

下面是一个简单的示例代码,演示如何在 StringCollection 中的指定索引处插入元素:

using System;
using System.Collections.Specialized;

class Program
{
    static void Main(string[] args)
    {
        // 创建 StringCollection
        StringCollection collection = new StringCollection();
        collection.Add("Apple");
        collection.Add("Banana");
        collection.Add("Cherry");

        // 在指定索引处插入元素
        collection.Insert(1, "Orange");

        // 输出元素
        foreach (string item in collection)
        {
            Console.WriteLine(item);
        }

        Console.ReadLine();
    }
}

输出结果为:

Apple
Orange
Banana
Cherry
总结

在 C# 编程中,我们可以使用 Insert 方法在 StringCollection 中的指定索引处插入元素。此方法需要提供要插入的元素和插入的位置。使用该方法可以很方便地对集合进行插入操作。