Dim extensions As New Dictionary(Of String, String) _
from { { "txt", "notepad" },
{ "bmp", "paint" },
{ "doc", "winword" } }
This creates a dictionary and immediately fills it with three KeyValuePairs.
You can also add new val...