2
我有以下代碼:在字典中修改的項目,而不會影響原來的對象
Dictionary<int, int> test = new Dictionary<int, int>();
test.Add(1,1);
test.Add(2, 2);
Dictionary<int, int> test2 = test;
test2.Remove(1);
從test2的刪除項目從測試對象也刪除的項目。你能告訴我如何修改項目test2而不影響測試?