If you move on to defining a method System.Linq.Enumerable.Contains, you will see that it is declared as a general extension method.
public static bool Contains<TSource>(this IEnumerable<TSource> source, TSource value);
, <type>, , - , . .
someCollection.Contains(someValue);
Enumerable.Contains<CollectionInnerType>(someCollection, someValue);