using System.Collections.Generic;
public class SortedDictionaryExample
public static void Main(string[] args)
SortedDictionary<string, string> names = new SortedDictionary<string, string>();
names.Add("SessionID","123asdaw44574586579789");
names.Add("LoginName","naijazs");
names.Add("BeneType","4");
names.Add("ConsumerNumber","03048405652");
names.Add("Amount","100");
foreach (KeyValuePair<string, string> kv in names)
Console.WriteLine(kv.Key+" "+kv.Value);