using System.Collections.Generic;
public static void Main()
SortedList<string, string> sortedStringList = new SortedList<string, string>();
sortedStringList.Add("test", "test");
sortedStringList.Add("testTwo", "testTwo");
sortedStringList.Add("testThree", "testThree");
sortedStringList.Add("testFour", "test");
foreach(KeyValuePair<string, string> sortedString in sortedStringList)
Console.WriteLine($"{sortedString.Key}: {sortedString.Value}");