LinkedList<T>.Remove method (1 of 2)

Removes the first occurance of the given value from the list.

public bool Remove(T value)
parameter description
value Value to remove.

See Also


LinkedList<T>.Remove method (2 of 2)

Removes the first occurance of the given value from the list.

public bool Remove(T value, bool reverse)
parameter description
value Value to remove.
reverse True to start at the end of the list.

See Also