MultiDictionaryTKey, TValueKeyComparer Property |
Returns the IEqualityComparer<T> used to compare keys in this dictionary.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic IEqualityComparer<TKey> KeyComparer { get; }
public:
property IEqualityComparer<TKey>^ KeyComparer {
IEqualityComparer<TKey>^ get ();
}
Property Value
Type:
IEqualityComparerTKeyIf the dictionary was created using a comparer, that comparer is returned. Otherwise
the default comparer for TKey (EqualityComparer<TKey>.Default) is returned.
See Also