mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-20 17:08:00 +02:00
Merge pull request #1480 from disarray2077/patch-6
Fix `Dictionary<T>.ValueEnumerator.Key`
This commit is contained in:
commit
5e810d4e8b
1 changed files with 1 additions and 1 deletions
|
@ -1105,7 +1105,7 @@ namespace System.Collections
|
|||
{
|
||||
get
|
||||
{
|
||||
return ref mDictionary.mEntries[mIndex].mKey;
|
||||
return ref mDictionary.mEntries[mIndex - 1].mKey;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue