网上演练
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
412 B

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