#if FAT using System.Collections.Generic; namespace LinqInternal.Collections { internal interface IExtendedCollection : ICollection, IExtendedReadOnlyCollection { // Collides ICollection with IExtendedReadOnlyCollection IReadOnlyCollection AsReadOnly { get; } new int Count { get; } bool Remove(T item, IEqualityComparer comparer); } } #endif