I just want get a list from Dictionary values but it\'s not so simple as it appears !
here the code :
Dictionary> my         
         
Use this:
List items = new List()
foreach(var value in myDico.Values)
    items.AddRange(value);
  The problem is that every key in your dictionary has a list of instances as value. Your code would work, if each key would have exactly one instance as value, as in the following example:
Dictionary myDico = GetDictionary();
List items = new List(myDico.Values);