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.
22 lines
461 B
22 lines
461 B
#if FAT |
|
|
|
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace LinqInternal.Collections |
|
{ |
|
internal partial class ProgressiveCollection<T> : IExtendedCollection<T> |
|
{ |
|
IReadOnlyCollection<T> IExtendedCollection<T>.AsReadOnly |
|
{ |
|
get { return this; } |
|
} |
|
|
|
bool IExtendedCollection<T>.Remove(T item, IEqualityComparer<T> comparer) |
|
{ |
|
throw new NotSupportedException(); |
|
} |
|
} |
|
} |
|
|
|
#endif |