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

返回

已添加 valueStringCollection 索引。

实现

例外

StringCollection 为只读。

- 或 -

StringCollection 具有固定的大小。

注解

StringCollection 接受 null 作为有效值,并允许重复元素。

如果 Count 已等于 容量,则通过自动重新分配内部数组来增加 的 StringCollection 容量,并在添加新元素之前将现有元素复制到新数组。

如果 Count 小于容量,则此方法为 O (1) 操作。 如果需要增加容量以适应新元素,此方法将成为 O (n) 操作,其中 nCount

适用于

另请参阅