I just want get a list from Dictionary values but it\'s not so simple as it appears !
here the code :
Dictionary> my
You probably want to flatten all of the lists in Values into a single list:
Values
List allItems = myDico.Values.SelectMany(c => c).ToList();