Mega Code Archive

 
Categories / VB.Net / Data Structure
 

Create a new sorted dictionary of strings, with string keys

Imports System Imports System.Collections.Generic Public Class Example     Public Shared Sub Main()          Dim openWith As New SortedDictionary(Of String, String)         openWith.Add("A", "a")         openWith.Add("B", "b")         openWith.Add("C", "c")         openWith.Add("D", "d")     End Sub End Class