StringCollection.IList.Add(Object) メソッド

定義

StringCollection の末尾にオブジェクトを追加します。

 virtual int System.Collections.IList.Add(System::Object ^ value) = System::Collections::IList::Add;
int IList.Add (object value);
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

パラメーター

value
Object

Object の末尾に追加する StringCollection。 値として null を指定できます。

戻り値

value が追加された位置の StringCollection インデックス。

実装

例外

StringCollection は読み取り専用です。

- または -

StringCollection は固定サイズです。

注釈

StringCollectionnull 有効な値として受け取り、重複する要素を許可します。

既に容量と等しい場合 Count 、 の StringCollection 容量は内部配列を自動的に再割り当てすることで増加し、新しい要素が追加される前に既存の要素が新しい配列にコピーされます。

が容量より小さい場合 Count 、このメソッドは O(1) 操作です。 新しい要素に対応するために容量を増やす必要がある場合、このメソッドは O(n) 操作になります。ここで n 、 は Countです。

適用対象

こちらもご覧ください