public bool TryRemove(
T item
)Public Function TryRemove (
item As T
) As Booleanpublic:
bool TryRemove(
T item
)member TryRemove :
item : 'T -> bool This method is functionally the same as the Remove method. The only difference is that this method is not an interface implementation so using this one will not end up in a virtual method call, which provides a slightly better performance.