illustrates the use of the SortedList methods : SortedList « Collections Data Structure « C# / C Sharp

C# / C Sharp
1. 2D Graphics
2. Class Interface
3. Collections Data Structure
4. Components
5. Data Types
6. Database ADO.net
7. Design Patterns
8. Development Class
9. Event
10. File Stream
11. Generics
12. GUI Windows Form
13. Language Basics
14. LINQ
15. Network
16. Office
17. Reflection
18. Regular Expressions
19. Security
20. Services Event
21. Thread
22. Web Services
23. Windows
24. XML
25. XML LINQ
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
C# / C Sharp » Collections Data Structure » SortedListScreenshots 
illustrates the use of the SortedList methods
illustrates the use of the SortedList methods

/*
Mastering Visual C# .NET
by Jason Price, Mike Gunderloy

Publisher: Sybex;
ISBN: 0782129110
*/

/*
  Example11_9.cs illustrates the use of the SortedList methods
*/

using System;
using System.Collections;

public class Example11_9
{

  public static void Main()
  {

    // create a SortedList object
    SortedList mySortedList = new SortedList();

    // add elements containing US state abbreviations and state
    // names to mySortedList using the Add() method
    mySortedList.Add("NY""New York");
    mySortedList.Add("FL""Florida");
    mySortedList.Add("AL""Alabama");
    mySortedList.Add("WY""Wyoming");
    mySortedList.Add("CA""California");

    // display the keys for mySortedList using the Keys property
    foreach (string myKey in mySortedList.Keys)
    {
      Console.WriteLine("myKey = " + myKey);
    }

    // display the values for mySortedList using the Values property
    foreach(string myValue in mySortedList.Values)
    {
      Console.WriteLine("myValue = " + myValue);
    }

    // use the ContainsKey() method to check if mySortedList
    // contains the key "FL"
    if (mySortedList.ContainsKey("FL"))
    {
      Console.WriteLine("mySortedList contains the key FL");
    }

    // use the ContainsValue() method to check if mySortedList
    // contains the value "Florida"
    if (mySortedList.ContainsValue("Florida"))
    {
      Console.WriteLine("mySortedList contains the value Florida");
    }

    // use the Remove() method to remove FL from mySortedList
    Console.WriteLine("Removing FL from mySortedList");
    mySortedList.Remove("FL");

    // get the key at index 3 using the GetKey() method
    string keyAtIndex3 = (stringmySortedList.GetKey(3);
    Console.WriteLine("The key at index 3 is " + keyAtIndex3);

    // get the index of the element with the key "NY"
    // using the IndexOfKey() method
    int myIndex = mySortedList.IndexOfKey("NY");
    Console.WriteLine("The index of NY is " + myIndex);

    // get the index of the element with the value "New York"
    // using the IndexOfValue() method
    myIndex = mySortedList.IndexOfValue("New York");
    Console.WriteLine("The index of New York is " + myIndex);

    // replace the value of the element at myIndex with "New York State"
    // using the SetByIndex() method
    Console.WriteLine("Replacing the value New York with New York State");
    mySortedList.SetByIndex(myIndex, "New York State");

    // get the key list using the GetKeyList() method
    Console.WriteLine("Getting the key list");
    IList myKeyList = mySortedList.GetKeyList();
    foreach(string myKey in myKeyList)
    {
      Console.WriteLine("myKey = " + myKey);
    }

    // get the value list using the GetValueList() method
    Console.WriteLine("Getting the value list");
    IList myValueList = mySortedList.GetValueList();
    foreach(string myValue in myValueList)
    {
      Console.WriteLine("myValue = " + myValue);
    }

  }

}

           
       
Related examples in the same category
1. Add element to SortedListAdd element to SortedList
2. Add to SortedList, get by key and index
3. Delete element in a SortedList with RemoveAt
4. illustrates the use of a SortedListillustrates the use of a SortedList
5. Demonstrate a SortedListDemonstrate a SortedList
w_w__w___.j__a___v__a2_s___.c__o_m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.