StringCollection.Insert(Int32, String) Metoda

Definicja

Wstawia ciąg do StringCollection określonego indeksu.

public:
 void Insert(int index, System::String ^ value);
public void Insert(int index, string value);
public void Insert(int index, string? value);
member this.Insert : int * string -> unit
Public Sub Insert (index As Integer, value As String)

Parametry

index
Int32

Indeks oparty na zera, w którym value jest wstawiony.

value
String

Ciąg do wstawienia. Wartość może mieć wartość null.

Wyjątki

Parametr index ma wartość niższą niż zero.

— lub —

index większe niż Count.

Przykłady

Poniższy przykład kodu dodaje nowe elementy do elementu StringCollection.

using System;
using System.Collections;
using System.Collections.Specialized;

public class SamplesStringCollection  {

   public static void Main()  {

      // Creates and initializes a new StringCollection.
      StringCollection myCol = new StringCollection();

      Console.WriteLine( "Initial contents of the StringCollection:" );
      PrintValues( myCol );

      // Adds a range of elements from an array to the end of the StringCollection.
      String[] myArr = new String[] { "RED", "orange", "yellow", "RED", "green", "blue", "RED", "indigo", "violet", "RED" };
      myCol.AddRange( myArr );

      Console.WriteLine( "After adding a range of elements:" );
      PrintValues( myCol );

      // Adds one element to the end of the StringCollection and inserts another at index 3.
      myCol.Add( "* white" );
      myCol.Insert( 3, "* gray" );

      Console.WriteLine( "After adding \"* white\" to the end and inserting \"* gray\" at index 3:" );
      PrintValues( myCol );
   }

   public static void PrintValues( IEnumerable myCol )  {
      foreach ( Object obj in myCol )
         Console.WriteLine( "   {0}", obj );
      Console.WriteLine();
   }
}

/*
This code produces the following output.

Initial contents of the StringCollection:

After adding a range of elements:
   RED
   orange
   yellow
   RED
   green
   blue
   RED
   indigo
   violet
   RED

After adding "* white" to the end and inserting "* gray" at index 3:
   RED
   orange
   yellow
   * gray
   RED
   green
   blue
   RED
   indigo
   violet
   RED
   * white

*/
Imports System.Collections
Imports System.Collections.Specialized

Public Class SamplesStringCollection   

   Public Shared Sub Main()

      ' Creates and initializes a new StringCollection.
      Dim myCol As New StringCollection()

      Console.WriteLine("Initial contents of the StringCollection:")
      PrintValues(myCol)

      ' Adds a range of elements from an array to the end of the StringCollection.
      Dim myArr() As [String] = {"RED", "orange", "yellow", "RED", "green", "blue", "RED", "indigo", "violet", "RED"}
      myCol.AddRange(myArr)

      Console.WriteLine("After adding a range of elements:")
      PrintValues(myCol)

      ' Adds one element to the end of the StringCollection and inserts another at index 3.
      myCol.Add("* white")
      myCol.Insert(3, "* gray")

      Console.WriteLine("After adding ""* white"" to the end and inserting ""* gray"" at index 3:")
      PrintValues(myCol)

   End Sub

   Public Shared Sub PrintValues(myCol As IEnumerable)
      Dim obj As [Object]
      For Each obj In  myCol
         Console.WriteLine("   {0}", obj)
      Next obj
      Console.WriteLine()
   End Sub

End Class


'This code produces the following output.
'
'Initial contents of the StringCollection:
'
'After adding a range of elements:
'   RED
'   orange
'   yellow
'   RED
'   green
'   blue
'   RED
'   indigo
'   violet
'   RED
'
'After adding "* white" to the end and inserting "* gray" at index 3:
'   RED
'   orange
'   yellow
'   * gray
'   RED
'   green
'   blue
'   RED
'   indigo
'   violet
'   RED
'   * white
'

Uwagi

Zduplikowane ciągi są dozwolone w pliku StringCollection.

Jeśli index wartość jest równa Count, value zostanie dodana na końcu elementu StringCollection.

W kolekcjach ciągłych elementów, takich jak listy, elementy zgodne z punktem wstawiania są przenoszone w dół, aby pomieścić nowy element. Jeśli kolekcja jest indeksowana, indeksy przeniesionych elementów również zostaną zaktualizowane. To zachowanie nie dotyczy kolekcji, w których elementy są koncepcyjnie pogrupowane w zasobniki, takie jak tabela skrótów.

Ta metoda jest operacją O(n), gdzie n to Count.

Dotyczy

Zobacz też