I'm working with a SortedDictionary where the key is integer and value is string.
SortedDictionary<int,string> dic = new SortedDictionary<int,string>();
Now say I add values like
dic.Add(100,"String 1");
dic.Add(1113,"String 2");
dic.Add(1,"String 3");
dic.Add(70,"String 4");
and then do a foreach loop like
foreach(string item in dic.Values) {
Console.WriteLine(item);
}
then the values never come out in the correct order, they come out in an almost random order which is similar behaviour to a normal Dictionary. Anyone got any ideas why? am I missing / doing something wrong?
PS: When I say it's coming out in a random order I mean key order not value so it's coming out like 1113,70,1,100
It seems I may have over simplified the problem, but it shouldn't make a difference, there is a lot of nesting involved and the final dictionary is actually the child of another dictionary which is the child of another!
SortedDictionary<String, SortedDictionary<String, SortedDictionary<int, SortedDictionary<String, String>>>>()
The dictionary i'm looping through is
SortedDictionary<int, SortedDictionary<String, String>>
Here is the loop as requested:
foreach (SortedDictionary<String, String> cDic in openTrades.Values)
{
String cTimestamp = convertTimestamp(cDic["open"]);
if (!closeTrades.ContainsKey(cDic["key"]) && barArray.ContainsKey(cDic["pair"]))
{
foreach (SortedDictionary<String, String> bDic in barArray[cDic["pair"]][cDic["frame"]].Values)
{
//This is the relative Loop
}
}
}
barArray is our Primary SortedDictionary (the subject of this question) openTrades is another SortedDictionary
Thanks James
String3, String4, String1, String2, then you are getting the expected behavior. – Anthony Pegram May 31 '11 at 20:30