Creates a Hashtable that uses case-insensitive string comparison associated with invariant culture.

Namespace:  NHibernate.Util
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function CreateCaseInsensitiveHashtable As Hashtable
C#
public static Hashtable CreateCaseInsensitiveHashtable()
Visual C++
public:
static Hashtable^ CreateCaseInsensitiveHashtable()
JavaScript
NHibernate.Util.CollectionHelper.createCaseInsensitiveHashtable = function();

Remarks

This is different from the method in CollectionsUtil in that the latter uses the current culture and is thus vulnerable to the "Turkish I" problem.

See Also