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:
parent
3dd4212ccd
commit
0c911b7929
1 changed files with 1 additions and 1 deletions
|
@ -1077,7 +1077,7 @@ namespace System.Collections
|
||||||
{
|
{
|
||||||
get
|
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