Data Structure VB.Net

Imports System
Imports System.Collections.Generic
Public Class Example
    Public Shared Sub Main() 
        Dim openWith As New Dictionary(Of String, String)
        Try
            Console.WriteLine("For key = ""tif"", value = {0}.", _
                openWith("tif"))
        Catch 
            Console.WriteLine("Key = ""tif"" is not found.")
        End Try
    End Sub
End Class