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