ReadOnlyCollection<T>.IList<T>.Insert(Int32, T) Méthode

Définition

Insère un élément dans IList<T> à l’index spécifié. Cette implémentation lève toujours NotSupportedException.

 virtual void System.Collections.Generic.IList<T>.Insert(int index, T value) = System::Collections::Generic::IList<T>::Insert;
void IList<T>.Insert (int index, T value);
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, value As T) Implements IList(Of T).Insert

Paramètres

index
Int32

Index de base zéro au niveau duquel value doit être inséré.

value
T

Objet à insérer dans IList<T>.

Implémente

Exceptions

Toujours levée.

Remarques

Ce membre est une implémentation d'un membre d'interface explicite. Il peut uniquement être utilisé lorsque l'instance de ReadOnlyCollection<T> est castée en interface IList<T>.

S’applique à