Array.IList.Add(Object) Méthode

Définition

L’appel de cette méthode lève toujours une exception NotSupportedException.

 virtual int System.Collections.IList.Add(System::Object ^ value) = System::Collections::IList::Add;
int IList.Add (object value);
abstract member System.Collections.IList.Add : obj -> int
override this.System.Collections.IList.Add : obj -> int
Function Add (value As Object) As Integer Implements IList.Add

Paramètres

value
Object

Objet à ajouter à IList.

Retours

Int32

L'ajout d'une valeur à un tableau n'est pas pris en charge. Aucune valeur n'est retournée.

Implémente

Exceptions

IList est de taille fixe.

Remarques

En règle générale, une IList.Add implémentation ajoute un membre à une collection. Toutefois, étant donné que les tableaux ont une taille fixe (la IsFixedSize propriété retourne truetoujours), cette méthode lève toujours une NotSupportedException exception.

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

S’applique à