Expose comparer
This commit is contained in:
parent
82ae67ab29
commit
32f83949f6
@ -224,5 +224,16 @@ namespace ObservableCollections
|
||||
{
|
||||
return GetEnumerator();
|
||||
}
|
||||
|
||||
public IEqualityComparer<TKey> Comparer
|
||||
{
|
||||
get
|
||||
{
|
||||
lock (SyncRoot)
|
||||
{
|
||||
return dictionary.Comparer;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -264,5 +264,16 @@ namespace ObservableCollections
|
||||
{
|
||||
return GetEnumerator();
|
||||
}
|
||||
|
||||
public IEqualityComparer<T> Comparer
|
||||
{
|
||||
get
|
||||
{
|
||||
lock (SyncRoot)
|
||||
{
|
||||
return set.Comparer;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user