Foley .NET Utilities Class Library

LinkedList.Contains Method (Object)

Determines whether the specified Object is in the LinkedList.

[Visual Basic]
Overrides Overloads Public Function Contains( _
   ByVal value As Object _
) As Boolean Implements _
   IList.Contains
[C#]
public override bool Contains(
   object value
);

Parameters

value
The Object to locate in the LinkedList. The Object to locate can be a null reference (Nothing in Visual Basic).

Return Value

true if value is found in the LinkedList; otherwise, false.

Implements

IList.Contains

Remarks

This method determines equality by calling Equals.

See Also

LinkedList Class | LinkedList Members | Foley.Utilities.Collections Namespace | LinkedList.Contains Overload List