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

Merge pull request #1480 from disarray2077/patch-6

Fix `Dictionary<T>.ValueEnumerator.Key`
This commit is contained in:
Brian Fiete 2022-03-01 18:53:26 +01:00 committed by GitHub
commit 5e810d4e8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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