The constructors for both ObservableHashSet<> and ObservableDictionary<,> were missing the IEqualityComparer<> parameter to specify how equality is handled.
I also updated the ObservableDictionary<,> constructor that takes an IEnumerable<KeyValuePair<,>>. The same constructor on Dictionary<,> is also available on .NET Standard 2.1, just not 2.0.
The constructors for both
ObservableHashSet<>
andObservableDictionary<,>
were missing theIEqualityComparer<>
parameter to specify how equality is handled.I also updated the
ObservableDictionary<,>
constructor that takes anIEnumerable<KeyValuePair<,>>
. The same constructor onDictionary<,>
is also available on .NET Standard 2.1, just not 2.0.