Method Remove
Remove(T)
Remove an item from the list.
Declaration
public bool Remove(T item)
Parameters
| Type | Name | Description | 
|---|---|---|
| T | item | Item to remove from the list.  | 
    
Returns
| Type | Description | 
|---|---|
| bool | True if the item was successfuly removed. False otherise.  | 
    
Implements
Remove(params T[])
Remove multiple items from the list.
Declaration
public int Remove(params T[] items)
Parameters
| Type | Name | Description | 
|---|---|---|
| T[] | items | Items to remove from the list.  | 
    
Returns
| Type | Description | 
|---|---|
| int | The number of removed items.  |