[]
        
(Showing Draft Content)

C1.WPF.C1OrderedSet.Remove

Remove Method

Remove(int)

Removes the first occurrence of a specific object from the ICollection<T>.

Declaration
public bool Remove(int item)
Parameters
Type Name Description
int item

The object to remove from the ICollection<T>.

Returns
Type Description
bool

true 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>.

Implements
Exceptions
Type Condition
NotSupportedException

The ICollection<T> is read-only.

Remove(C1OrderedSet)

Removes the specified items.

Declaration
public bool Remove(C1OrderedSet removedItems)
Parameters
Type Name Description
C1OrderedSet removedItems

The removed items.

Returns
Type Description
bool