#if FAT using System; using System.Collections.Generic; namespace LinqInternal.Collections { internal partial class ProgressiveCollection : IExtendedCollection { IReadOnlyCollection IExtendedCollection.AsReadOnly { get { return this; } } bool IExtendedCollection.Remove(T item, IEqualityComparer comparer) { throw new NotSupportedException(); } } } #endif