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.
17 lines
386 B
17 lines
386 B
5 years ago
|
#if FAT
|
||
|
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace LinqInternal.Collections
|
||
|
{
|
||
|
internal sealed partial class ExtendedReadOnlyCollection<T> : IExtendedReadOnlyCollection<T>, IExtendedCollection<T>
|
||
|
{
|
||
|
bool IExtendedCollection<T>.Remove(T item, IEqualityComparer<T> comparer)
|
||
|
{
|
||
|
throw new NotSupportedException();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|