This documentation is archived and is not being maintained.
CollectionsUtil.CreateCaseInsensitiveHashtable Method
.NET Framework 1.1
Creates a new instance of the Hashtable class that ignores the case of strings.
Overload List
Creates a new case-insensitive instance of the Hashtable class with the default initial capacity.
[Visual Basic] Overloads Public Shared Function CreateCaseInsensitiveHashtable() As Hashtable
[C#] public static Hashtable CreateCaseInsensitiveHashtable();
[C++] public: static Hashtable* CreateCaseInsensitiveHashtable();
[JScript] public static function CreateCaseInsensitiveHashtable() : Hashtable;
Copies the entries from the specified dictionary to a new case-insensitive instance of the Hashtable class with the same initial capacity as the number of entries copied.
[Visual Basic] Overloads Public Shared Function CreateCaseInsensitiveHashtable(IDictionary) As Hashtable
[C#] public static Hashtable CreateCaseInsensitiveHashtable(IDictionary);
[C++] public: static Hashtable* CreateCaseInsensitiveHashtable(IDictionary*);
[JScript] public static function CreateCaseInsensitiveHashtable(IDictionary) : Hashtable;
Creates a new case-insensitive instance of the Hashtable class with the specified initial capacity.
[Visual Basic] Overloads Public Shared Function CreateCaseInsensitiveHashtable(Integer) As Hashtable
[C#] public static Hashtable CreateCaseInsensitiveHashtable(int);
[C++] public: static Hashtable* CreateCaseInsensitiveHashtable(int);
[JScript] public static function CreateCaseInsensitiveHashtable(int) : Hashtable;
See Also
CollectionsUtil Class | CollectionsUtil Members | System.Collections.Specialized Namespace
Show: