You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After a few tests I found a small bug in your current version in the "OrderedList.cs" file in a public property named "public object this[object key]".
In the "set" branch is the following code line:
table[IndexOf(key)] = new DictionaryEntry(key, value);
but I found out it has to be:
list[IndexOf(key)] = new DictionaryEntry(key, value);
because otherwise it never will assign the new value to the ArrayList if you want to set a key via
keys[key] = some_new_value;
The text was updated successfully, but these errors were encountered:
After a few tests I found a small bug in your current version in the "OrderedList.cs" file in a public property named "public object this[object key]".
In the "set" branch is the following code line:
but I found out it has to be:
because otherwise it never will assign the new value to the ArrayList if you want to set a key via
The text was updated successfully, but these errors were encountered: