LinkedList<T>.Find(T) Method

Definition

Finds the first node that contains the specified value.

public:
 System::Collections::Generic::LinkedListNode<T> ^ Find(T value);
public System.Collections.Generic.LinkedListNode<T> Find (T value);
public System.Collections.Generic.LinkedListNode<T>? Find (T value);
member this.Find : 'T -> System.Collections.Generic.LinkedListNode<'T>
Public Function Find (value As T) As LinkedListNode(Of T)

Parameters

value
T

The value to locate in the LinkedList<T>.

Returns

The first LinkedListNode<T> that contains the specified value, if found; otherwise, null.

Examples

For an example that includes this method, see the LinkedList<T> class.

Remarks

The LinkedList<T> is searched forward starting at First and ending at Last.

This method performs a linear search; therefore, this method is an O(n) operation, where n is Count.

Applies to

See also