SynchronizedSuspendableObservableCollection<T>.Remove - метод
Removes the first occurrence of a specific object from the ICollection<T>.
Пространство имён: Tessa.UIСборка: Tessa.UI (в Tessa.UI.dll) Версия: 3.6.0.24
public bool Remove(
T item
)
Public Function Remove (
item As T
) As Boolean
public:
virtual bool Remove(
T item
) sealed
abstract Remove :
item : 'T -> bool
override Remove :
item : 'T -> bool
- item T
- The object to remove from the ICollection<T>.
Booleantrue if
item was successfully removed from the
ICollection<T>; otherwise,
false. This method also returns
false if
item is not found in the original
ICollection<T>.
ICollection<T>.Remove(T) NotSupportedException | The ICollection<T> is read-only. |