Imports System.Collections.Generic
Imports System.Runtime.CompilerServices
Public Module EnumerableExtensions
Public Function FirstValue(Of TKey, TValue)(source As SortedDictionary(Of TKey, TValue)) As TValue
Dim a As SortedDictionary(Of string, string) = new SortedDictionary(Of string, string)
Console.WriteLine(a.FirstValue())