1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-20 17:08:00 +02:00

Fix Dictionary<T>.ValueEnumerator.Key

This commit is contained in:
disarray2077 2022-02-28 22:42:46 -03:00 committed by GitHub
parent 3dd4212ccd
commit 0c911b7929
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1077,7 +1077,7 @@ namespace System.Collections
{
get
{
return ref mDictionary.mEntries[mIndex].mKey;
return ref mDictionary.mEntries[mIndex - 1].mKey;
}
}