Array.IList.Add Method (Object)
.NET Framework (current version)
Calling this method always throws a NotSupportedException exception.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
-
Type:
System.Object
The object to be added to the IList.
Implements
IList.Add(Object)| Exception | Condition |
|---|---|
| NotSupportedException | The IList has a fixed size. |
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.
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: