LinkedList<T>.Contains method

Determines whether the List contains a specific value.

public bool Contains(T value)
parameter description
value The object to locate in the list.

Return Value

True if value is in the list, false otherwise.

See Also