Xamarin Public Jenkins (auto-signing) e79aa3c0ed Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
2016-08-03 10:59:49 +00:00

49 lines
1.6 KiB
C#

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