Create a SortedList using case-insensitive comparer : SortedList « Collections Data Structure « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Collections Data Structure » SortedListScreenshots 
Create a SortedList using case-insensitive comparer
  

using System;
using System.Collections;
using System.Globalization;

public class SamplesSortedList
{
    public static void Main()
    {

        SortedList mySL2 = new SortedList(new CaseInsensitiveComparer());
        Console.WriteLine("mySL2 (case-insensitive comparer):");
        mySL2.Add("A""a");
        mySL2.Add("B""b");
        mySL2.Add("C""c");
        try
        {
            mySL2.Add("first""aaaaa");
        }
        catch (ArgumentException e)
        {
            Console.WriteLine(e);
        }
        PrintKeysAndValues(mySL2);

    }

    public static void PrintKeysAndValues(SortedList myList)
    {
        Console.WriteLine("        -KEY-   -VALUE-");
        for (int i = 0; i < myList.Count; i++)
        {
            Console.WriteLine("        {0,-6}: {1}",
                myList.GetKey(i), myList.GetByIndex(i));
        }
        Console.WriteLine();
    }
}

   
    
  
Related examples in the same category
1.Create SortedList sorted according to the specified IComparer
2.Create a SortedList using CaseInsensitiveComparer based on the Turkish culture (tr-TR)
3.Create a SortedList using the StringComparer.InvariantCultureIgnoreCase value.
4.SortedList is a collection of key/value pairs that are sorted by the keys and are accessible by key and by index.
5.SortedList.Add Method Adds an element with key and value to a SortedList object.
6.SortedList.Clear removes all elements from a SortedList object.
7.SortedList.Contains Determines whether a SortedList object contains a specific key.
8.SortedList.CopyTo copies SortedList elements to a one-dimensional Array object
9.SortedList.GetByIndex gets the value at the specified index of a SortedList object.
10.SortedList.IndexOfKey returns the zero-based index of the specified key in a SortedList object.
11.SortedList.IsSynchronized tells whether access to a SortedList object is synchronized (thread safe).
12.SortedList.Remove removes the element with the specified key from a SortedList object.
13.SortedList.SetByIndex replaces the value at a specific index in a SortedList object.
14.Add element to SortedListAdd element to SortedList
15.Add to SortedList, get by key and index
16.Delete element in a SortedList with RemoveAt
17.illustrates the use of a SortedListillustrates the use of a SortedList
18.illustrates the use of the SortedList methodsillustrates the use of the SortedList methods
19.Demonstrate a SortedListDemonstrate a SortedList
20.Create a SortedList using the default comparer
21.Create a SortedList using the specified case-insensitive comparer
22.Create a SortedList using the specified CaseInsensitiveComparer
23.Parametr Collection
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.