Array.IList.Add(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Calling this method always throws a NotSupportedException exception.
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
Parameters
Returns
Adding a value to an array is not supported. No value is returned.
Implements
Exceptions
The IList has a fixed size.
Remarks
Ordinarily, an IList.Add implementation adds a member to a collection. However, because arrays have a fixed size (the IsFixedSize property always returns true
), this method always throws a NotSupportedException exception.
This member is an explicit interface member implementation. It can be used only when the Array instance is cast to an IList interface.