假设我有一个Dictionary<Key,List<item>>测试字典
如果我这样做了:

List<item> someCollection;
TestDictionary.TryGetValue(someKey,out someCollection); //assuming that someCollection will not return null;
someCollection.add(someItem);

将对象someitem添加到字典值testdictionary[somekey]的集合中吗?

最佳答案

是的,如果对象是ref类型,您将拥有它的引用;如果对象是值类型,您当然拥有它的副本

08-24 19:43