Click or drag to resize
DigitalRuneDequeTContains Method

Namespace: DigitalRune.Collections
Assembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax
public bool Contains(
	T item
)

Parameters

item
Type: T
The object to locate in the DequeT.

Return Value

Type: Boolean
if item is found in the DequeT; otherwise, .

Implements

ICollectionTContains(T)
Remarks

This method determines equality using the default equality comparer Default for T, the type of values in the DequeT.

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

See Also