SynchronizedReadOnlyCollection<T>.ICollection<T>.Add(T) 方法

定义

如果调用,会引发 NotSupportedException

 virtual void System.Collections.Generic.ICollection<T>.Add(T value) = System::Collections::Generic::ICollection<T>::Add;
void ICollection<T>.Add (T value);
abstract member System.Collections.Generic.ICollection<T>.Add : 'T -> unit
override this.System.Collections.Generic.ICollection<T>.Add : 'T -> unit
Sub Add (value As T) Implements ICollection(Of T).Add

参数

value
T

要添加到集合的元素。

实现

例外

不能设置只读集合中的项。

注解

不能向只读集合添加项。

适用于