ArraySegment<T>.IList<T>.Insert(Int32, T) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Lève une exception NotSupportedException dans tous les cas.
virtual void System.Collections.Generic.IList<T>.Insert(int index, T item) = System::Collections::Generic::IList<T>::Insert;
void IList<T>.Insert (int index, T item);
abstract member System.Collections.Generic.IList<T>.Insert : int * 'T -> unit
override this.System.Collections.Generic.IList<T>.Insert : int * 'T -> unit
Sub Insert (index As Integer, item As T) Implements IList(Of T).Insert
Paramètres
- index
- Int32
Index de base zéro au niveau duquel item
doit être inséré.
- item
- T
Objet à insérer dans le segment de tableau.
Implémente
Exceptions
Dans tous les cas.
Remarques
Cette méthode lève toujours une NotSupportedException car un segment de tableau ne peut pas être développé.