I'm currently adding items to a dictionary as below..
private Dictionary<string, Dictionary<string, object>> mydict = new Dictionary<string, Dictionary<string, object>>();
mydict.Add("string1", classobject1);
At the very end I wish to add "stringN" and classobjectN but I wish to add it as the first item in the dictionary.
Is the above possible?