Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.Collections.Specialized/CollectionsUtil.cs')
-rw-r--r--mcs/class/System/System.Collections.Specialized/CollectionsUtil.cs38
1 files changed, 0 insertions, 38 deletions
diff --git a/mcs/class/System/System.Collections.Specialized/CollectionsUtil.cs b/mcs/class/System/System.Collections.Specialized/CollectionsUtil.cs
deleted file mode 100644
index 82d103134f1..00000000000
--- a/mcs/class/System/System.Collections.Specialized/CollectionsUtil.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-//
-// System.Collections.Specialized.CollectionsUtil.cs
-//
-// Author:
-// Lawrence Pit (loz@cable.a2000.nl)
-//
-
-using System.Collections;
-
-namespace System.Collections.Specialized {
-
- public class CollectionsUtil {
-
- public CollectionsUtil () {}
-
- public static Hashtable CreateCaseInsensitiveHashtable ()
- {
- return new Hashtable (CaseInsensitiveHashCodeProvider.Default,
- CaseInsensitiveComparer.Default);
- }
-
-
- public static Hashtable CreateCaseInsensitiveHashtable (IDictionary d) {
- return new Hashtable (d, CaseInsensitiveHashCodeProvider.Default,
- CaseInsensitiveComparer.Default);
- }
-
- public static Hashtable CreateCaseInsensitiveHashtable (int capacity) {
- return new Hashtable (capacity, CaseInsensitiveHashCodeProvider.Default,
- CaseInsensitiveComparer.Default);
- }
-
-
- public static SortedList CreateCaseInsensitiveSortedList () {
- return new SortedList (CaseInsensitiveComparer.Default);
- }
- }
-} \ No newline at end of file