StringCollection.IList.Add(Object) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将对象添加到 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 接受 null
作为有效值,并允许重复元素。
如果 Count 已等于 容量,则通过自动重新分配内部数组来增加 的 StringCollection 容量,并在添加新元素之前将现有元素复制到新数组。
如果 Count 小于容量,则此方法为 O (1) 操作。 如果需要增加容量以适应新元素,此方法将成为 O (n
) 操作,其中 n
为 Count。