Foley .NET Utilities Class Library

LinkedSet.Contains Method (Object)

Determines whether an Object is in the LinkedSet.

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

Parameters

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

Return Value

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

Implements

ISet.Contains

Remarks

This method determines equality by calling Equals.

See Also

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