NameObjectCollectionBase Constructor (IHashCodeProvider, IComparer)
Initializes a new instance of the NameObjectCollectionBase class that is empty, has the default initial capacity, and uses the specified hash code provider and the specified comparer.
Assembly: System (in System.dll)
[<ObsoleteAttribute("Please use NameObjectCollectionBase(IEqualityComparer) instead.")>] new : hashProvider:IHashCodeProvider * comparer:IComparer -> NameObjectCollectionBase
Parameters
- hashProvider
-
Type:
System.Collections.IHashCodeProvider
The IHashCodeProvider that will supply the hash codes for all keys in the NameObjectCollectionBase instance.
- comparer
-
Type:
System.Collections.IComparer
The IComparer to use to determine whether two keys are equal.
The capacity of a NameObjectCollectionBase is the number of elements that the NameObjectCollectionBase can hold. As elements are added to a NameObjectCollectionBase, the capacity is automatically increased as required by reallocating the internal array.
If the size of the collection can be estimated, specifying the initial capacity eliminates the need to perform a number of resizing operations while adding elements to the NameObjectCollectionBase.
The hash code provider dispenses hash codes for keys in the NameObjectCollectionBase instance. The default hash code provider is the CaseInsensitiveHashCodeProvider.
The comparer determines whether two keys are equal. The default comparer is the CaseInsensitiveComparer.
This constructor is an O(1) operation.
Available since 1.1