//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ // Wrapper for a case insensitive Hashtable. namespace System.Collections.Specialized { using System.Collections; /// /// [To be supplied.] /// public class CollectionsUtil { /// /// [To be supplied.] /// public static Hashtable CreateCaseInsensitiveHashtable() { return new Hashtable(StringComparer.CurrentCultureIgnoreCase); } /// /// [To be supplied.] /// public static Hashtable CreateCaseInsensitiveHashtable(int capacity) { return new Hashtable(capacity, StringComparer.CurrentCultureIgnoreCase); } /// /// [To be supplied.] /// public static Hashtable CreateCaseInsensitiveHashtable(IDictionary d) { return new Hashtable(d, StringComparer.CurrentCultureIgnoreCase); } /// /// [To be supplied.] /// public static SortedList CreateCaseInsensitiveSortedList() { return new SortedList(CaseInsensitiveComparer.Default); } } }