ListDictionary Constructor (IComparer)
.NET Framework (current version)
Creates an empty ListDictionary using the specified comparer.
Assembly: System (in System.dll)
Parameters
- comparer
-
Type:
System.Collections.IComparer
The IComparer to use to determine whether two keys are equal.
-or-
null to use the default comparer, which is each key's implementation of Object.Equals.
The comparer determines whether two keys are equal. Every key in a ListDictionary must be unique. The default comparer is the key's implementation of Object.Equals.
The custom comparer enables such scenarios as doing lookups with case-insensitive strings.
This constructor is an O(1) operation.
Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Available since 10
.NET Framework
Available since 1.1
Show: