私が持っているかどうかを検討してくださいDictionary<Key,List<item>>
TestDictionary
私が行った場合:
List<item> someCollection;
TestDictionary.TryGetValue(someKey,out someCollection); //assuming that someCollection will not return null;
someCollection.add(someItem);
オブジェクトは値someItem
でコレクションに追加されますか?Dictionary
TestDictionary[someKey]