i need a Key/Value List with more than one Value per Key!
What i have tried:
SortedList<string,List<int>> MyList = new SortedList<string,List<int>>();
But the Problem is that i cannot add values to the List in the SortedList dynamicly?
foreach(var item in MyData) { MyList.Add(item.Key,item.Value ????); }
How can i solve this problem? Is there allready a list with this features?
Regards rubiktubik