I have a dictionary where my value is a List. When I add keys, if the key exists I want to add another string to the value (List)? If the key doesn\'t exist then I create a
Just create a new array in your dictionary
Dictionary> myDic = new Dictionary>(); myDic.Add(newKey, new List(existingList));