Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

NameValueCollection Constructor (Int32, IHashCodeProvider^, IComparer^)

 
Note: This API is now obsolete.

Initializes a new instance of the NameValueCollection class that is empty, has the specified initial capacity and uses the specified hash code provider and the specified comparer.

Namespace:   System.Collections.Specialized
Assembly:  System (in System.dll)

public:
[ObsoleteAttribute("Please use NameValueCollection(Int32, IEqualityComparer) instead.")]
NameValueCollection(
	int capacity,
	IHashCodeProvider^ hashProvider,
	IComparer^ comparer
)

Parameters

capacity
Type: System::Int32

The initial number of entries that the NameValueCollection can contain.

hashProvider
Type: System.Collections::IHashCodeProvider^

The IHashCodeProvider that will supply the hash codes for all keys in the NameValueCollection.

comparer
Type: System.Collections::IComparer^

The IComparer to use to determine whether two keys are equal.

Exception Condition
ArgumentOutOfRangeException

capacity is less than zero.

The capacity of a NameValueCollection is the number of elements that the NameValueCollection can hold. As elements are added to a NameValueCollection, 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 NameValueCollection.

The hash code provider dispenses hash codes for keys in the NameValueCollection. 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(n) operation, where n is capacity.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft