diff --git a/CSharp/Libraries/UniversalEditor.Essential/Collections/Generic/AutoDictionary.cs b/CSharp/Libraries/UniversalEditor.Essential/Collections/Generic/AutoDictionary.cs index 5bef6898..9aa625e5 100644 --- a/CSharp/Libraries/UniversalEditor.Essential/Collections/Generic/AutoDictionary.cs +++ b/CSharp/Libraries/UniversalEditor.Essential/Collections/Generic/AutoDictionary.cs @@ -42,7 +42,7 @@ namespace UniversalEditor.Collections.Generic { // the .NET Framework Dictionary`2 implementation handles the "add or update" case // automatically if a non-existent key is specified - this[key] = value; + base[key] = value; } } }