Array.IList.Add(Object) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
呼叫這個方法一律會擲回 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
參數
傳回
不支援將值加入陣列。 沒有傳回值。
實作
例外狀況
IList 具有固定的大小。
備註
一般而言,實作 IList.Add 會將成員加入至集合。 不過,因為陣列具有固定大小 (屬性一律會傳 IsFixedSize 回) ,所以此方法一律會 NotSupportedException 擲回 true
例外狀況。
這個成員是明確介面成員實作, 只有在 Array 執行個體轉換成 IList 介面時,才能使用這個成員。