SystemShellListItemCollection<T>.Remove Method |
Part of the
ICollection<T> interface. Removes an element from the collection.
Namespace:
Jam.Shell
Assembly:
ShellBrowser.Core (in ShellBrowser.Core.dll) Version: 7.1
Syntaxpublic 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
Parameters
- item
- Type: T
The object to remove from the
ICollection<T>.
Return Value
Type:
Booleantrue if the item was removed, false otherwise.
Implements
ICollection<T>.Remove(T)
Exceptions
See Also