HashSet<TKey, TValue>.Remove - метод
Removes the first occurrence of a specific object from the ICollection<T>.
Пространство имён: Tessa.Platform.CollectionsСборка: Tessa (в Tessa.dll) Версия: 4.0.8
public bool Remove(
TValue item
)
Public Function Remove (
item As TValue
) As Boolean
public:
virtual bool Remove(
TValue item
) sealed
abstract Remove :
item : 'TValue -> bool
override Remove :
item : 'TValue -> bool
- item TValue
- 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. |