using System.Collections.Generic;
public static void Main()
IDictionary<string, object> animalObjects = new Dictionary<string, object>();
animalObjects.Add("Monkey","SomeValue");
animalObjects.Add("Cat","SomeValue");
animalObjects.Add("Tiger","SomeValue");
animalObjects.Add("Zebra","SomeValue");
foreach(var entry in animalObjects.OrderBy(x => x.Key != "Tiger"))
Console.WriteLine(entry.Key + " " + entry.Value);