ICollection<T>.Contains Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Determines whether the ICollection<T> contains a specific value.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- item
- Type: T
The object to locate in the ICollection<T>.
Implementations can vary in how they determine equality of objects; for example, List<T> uses Comparer<T>.Default, whereas Dictionary<TKey, TValue> allows the user to specify the IComparer<T> implementation to use for comparing keys.
Show: