This topic has not yet been rated - Rate this topic

SortedList.Values Property

Gets a collection containing the values in the SortedList.

Namespace: System.Collections.Generic
Assembly: System (in system.dll)

public IList<TValue> Values { get; }
/** @property */
public IList<TValue> get_Values ()

public function get Values () : IList<TValue>

Not applicable.

Property Value

A IList containing the values in the SortedList.

The order of the values in the IList is the same as the order in the SortedList.

The returned IList is not a static copy; instead, the IList refers back to the values in the original SortedList. Therefore, changes to the SortedList continue to be reflected in the IList.

The collection returned by the Values property provides an efficient way to retrieve values by index. It is not necessary to regenerate the list when the property is accessed, because the list is just a wrapper for the internal array of values. The following code shows the use of the Values property for indexed retrieval of values from a sorted list of strings:

string v = mySortedList.Values[3];

Retrieving the value of this property is an O(1) operation.

This code example shows how to enumerate the values in the sorted list using the Values property, and how to enumerate the keys and values in the sorted list.

The example also shows how to use the Values property for efficient indexed retrieval of values.

This code example is part of a larger example provided for the SortedList class.

    // To get the values alone, use the Values property.
    IList<string> ilistValues = openWith.Values;

    // The elements of the list are strongly typed with the 
    // type that was specified for the SorteList values.
    Console.WriteLine();
    foreach( string s in ilistValues )
    {
        Console.WriteLine("Value = {0}", s);
    }

    // The Values property is an efficient way to retrieve
    // values by index.
    Console.WriteLine("\nIndexed retrieval using the Values " +
        "property: Values[2] = {0}", openWith.Values[2]);

...

    // When you use foreach to enumerate list elements,
    // the elements are retrieved as KeyValuePair objects.
    Console.WriteLine();
    foreach( KeyValuePair<string, string> kvp in openWith )
    {
        Console.WriteLine("Key = {0}, Value = {1}", 
            kvp.Key, kvp.Value);
    }

Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

.NET Compact Framework

Supported in: 2.0

XNA Framework

Supported in: 1.0
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.