This repository has been archived by the owner on May 1, 2024. It is now read-only.
Allow custom EqualityComparer on ViewModelBase.Set<T>() function #112
Labels
type: feature
New feature or enhancement
Feature description
The
Set<T>()
function does use theEqualityComparer<T>.Default
default comparer which is great for most use-cases.However if custom equality testing is required it means the function cannot be used.
With a simple overload it could be enabled to pass a custom comparer using the
IEqualityComparer
interface to theSet<T>()
function without introducing any breaking changes.Code sample
No response
The text was updated successfully, but these errors were encountered: