Imports System.Collections.Generic
Dim dict As Dictionary(Of String, Integer) = New Dictionary(Of String, Integer)
dict.Add("First Item", 0)
dict.Add("Second Item", 1)
dict.Add("Third Item", 2)
Dim key As String = Console.ReadLine()
If dict.ContainsKey(key) Then
Console.Write("The respective key's value is: ")
Console.WriteLine(dict.Item(key))
Console.WriteLine("The given key does not exist within the Dictionary")