I just want get a list from Dictionary values but it\'s not so simple as it appears !
here the code :
Dictionary> my
Off course, myDico.Values is List>.
List>
Use Linq if you want to flattern your lists
var items = myDico.SelectMany (d => d.Value).ToList();