考慮我有一個Dictionary<Key,List<item>>
TestDictionary引用是否在Dictionary.TryGetValue點OUT參數的值
,如果我這樣做:
List<item> someCollection;
TestDictionary.TryGetValue(someKey,out someCollection); //assuming that someCollection will not return null;
someCollection.add(someItem);
將對象someItem加入到集合中的字典值TestDictionary [someKey]?
是的,你可以自己嘗試。 –
其實你可以通過打印字典項目來證明它。 – Raptor
@JohannesRudolph可能:) –