I created a complex dictionary.
mainDict<mainKey, SubDict>
subDict<subKey, sub1Dict>
sub1Dict<sub1Key, sub2Dict>
sub2Dict<sub2Key, sub2Value>
.......
How to print it out like this (vs2005 & .net 2.0 based)
mainKey/subKey/sub1Key/sub2Key, sub2Value
Do i need convert mainDict to a List and call join()?
thank you.
UPDATE: