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.

HybridDictionary Constructor (Boolean)

 

Creates an empty HybridDictionary with the specified case sensitivity.

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

public:
HybridDictionary(
	bool caseInsensitive
)

Parameters

caseInsensitive
Type: System::Boolean

A Boolean that denotes whether the HybridDictionary is case-insensitive.

If caseInsensitive is false, the collection uses the key's implementations of Object::GetHashCode and Object::Equals. If caseInsensitive is true, the collection performs a simple ordinal case-insensitive comparison, which obeys the casing rules of the invariant culture only. For more information on the invariant culture, see System.Globalization::CultureInfo.

This constructor is an O(1) operation.

Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft