LinkedList<T>.Find Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Finds the first node that contains the specified value.

Namespace:  System.Collections.Generic
Assembly:  System (in System.dll)

Syntax

'Declaration
Public Function Find ( _
    value As T _
) As LinkedListNode(Of T)
public LinkedListNode<T> Find(
    T value
)

Parameters

Return Value

Type: System.Collections.Generic.LinkedListNode<T>
The first LinkedListNode<T> that contains the specified value, if found; otherwise, nulla null reference (Nothing in Visual Basic).

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.

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.