The default Item property throws an exception if the requested key is not in the list : SortedList « Data Structure « VB.Net






The default Item property throws an exception if the requested key is not in the list

 

Imports System
Imports System.Collections.Generic

Public Class Example
    Public Shared Sub Main()
        Dim openWith As New SortedList(Of String, String)

        openWith.Add("A", "a")
        openWith.Add("B", "b")
        openWith.Add("C", "c")
        openWith.Add("D", "d")

        Try
            Console.WriteLine("For key = ""tif"", value = {0}.", _
                openWith("tif"))
        Catch
            Console.WriteLine("Key = ""tif"" is not found.")
        End Try

    End Sub

End Class

   
  








Related examples in the same category

1.Create a SortedList using the default comparer
2.Create a SortedList using the specified case-insensitive comparer
3.Create a SortedList using the CaseInsensitiveComparer based on the Turkish culture (tr-TR)
4.Create a SortedList using the StringComparer.InvariantCultureIgnoreCase value
5.Simple Example for Sorted ListSimple Example for Sorted List
6.Create Case Insensitive Sorted ListCreate Case Insensitive Sorted List
7.Output Items in a SortedListOutput Items in a SortedList
8.SortedList Class represents a collection of key/value pairs that are sorted by the keys
9.Create a SortedList using the default comparer
10.Create a SortedList using the specified case-insensitive comparer
11.Create a SortedList using the specified CaseInsensitiveComparer
12.Create a SortedList using the StringComparer.InvariantCultureIgnoreCase value
13.Create SortedList that contains elements from dictionary
14.SortedList(TKey, TValue) represents a collection of key/value pairs that are sorted by key based
15.The Add method throws an exception if the new key is already in the list.
16.Item property is the default property, so you can omit its name when accessing elements
17.The default Item property can be used to change the value associated with a key
18.If a key does not exist, setting the default Item property for that key adds a new key/value pair
19.TryGetValue can be a more efficient way to retrieve values
20.ContainsKey can be used to test keys before inserting them
21.When using foreach to enumerate list elements, the elements are retrieved as KeyValuePair objects
22.To get the values alone, use the Values property
23.The Values property is an efficient way to retrieve values by index
24.To get the keys alone, use the Keys property
25.The Keys property is an efficient way to retrieve keys by index
26.Use the Remove method to remove a key/value pair
27.SortedList.Add Method adds key and value to a SortedList object.
28.SortedList.Clear Method removes all elements from a SortedList object.
29.SortedList.Contains Method determines whether a SortedList object contains a specific key.
30.SortedList.CopyTo Method copies SortedList to a one-dimensional Array
31.SortedList.GetByIndex Method gets the value at the specified index of a SortedList object.
32.SortedList.IndexOfKey Method returns the zero-based index of the specified key in a SortedList object.
33.Searches for a specific key
34.Searches for a specific value
35.SortedList.IsSynchronized Property tells whether access to a SortedList object is synchronized (thread safe).
36.SortedList.Remove removes element with the specified key from a SortedList object.
37.SortedList.SetByIndex Method replaces the value at a specific index in a SortedList object.