FreezableCollection<T>.Add(T) メソッド
定義
指定したオブジェクトを FreezableCollection<T> の末尾に追加します。Adds the specified object to the end of the FreezableCollection<T>.
public:
virtual void Add(T value);
public void Add (T value);
abstract member Add : 'T -> unit
override this.Add : 'T -> unit
Public Sub Add (value As T)
パラメーター
- value
- T
FreezableCollection<T> の末尾に追加するオブジェクト。The object to be added to the end of the FreezableCollection<T>. この値を null
にすることはできません。This value cannot be null
.
実装
例外
value
が null
です。value
is null
.
FreezableCollection<T> が固定されています (IsFrozen プロパティが true
)。The FreezableCollection<T> is frozen (its IsFrozen property is true
).