📌  相关文章
📜  C#|在StringCollection中的指定索引处获取或设置

📅  最后修改于: 2021-05-29 21:57:28             🧑  作者: Mango

StringCollection类是.NET Framework类库的新添加,它表示字符串的集合。 StringCollection类在System.Collections.Specialized命名空间中定义。

特性:

  • StringCollection接受null作为有效值,并允许重复的元素。
  • 字符串比较区分大小写。
  • 可以使用整数索引访问此集合中的元素。
  • 此集合中的索引从零开始。

下面的程序说明了如何在StringCollection中的指定索引处获取或设置元素:

范例1:

// C# code to get or set the element at the
// specified index in StringCollection
using System;
using System.Collections;
using System.Collections.Specialized;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // creating a StringCollection named myCol
        StringCollection myCol = new StringCollection();
  
        // creating a string array named myArr
        String[] myArr = new String[] { "G", "e", "E", "k", "s" };
  
        // Copying the elements of a string
        // array to the end of the StringCollection.
        myCol.AddRange(myArr);
  
        // To get element at index 2
        Console.WriteLine(myCol[2]);
    }
}
输出:
E

范例2:

// C# code to get or set the element at the
// specified index in StringCollection
using System;
using System.Collections;
using System.Collections.Specialized;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // creating a StringCollection named myCol
        StringCollection myCol = new StringCollection();
  
        // creating a string array named myArr
        String[] myArr = new String[] { "3", "5", "7", "11", "13" };
  
        // Copying the elements of a string
        // array to the end of the StringCollection.
        myCol.AddRange(myArr);
  
        // To get element at index 3
        Console.WriteLine(myCol[3]);
  
        // Set the value at index 3 to "8"
        myCol[3] = "8";
  
        // To get element at index 3
        Console.WriteLine(myCol[3]);
    }
}
输出:
11
8