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

Fixed ContainsValue

This commit is contained in:
Brian Fiete 2021-05-20 16:25:26 -04:00
parent 8975b30e0f
commit e004b6fe17

View file

@ -260,7 +260,7 @@ namespace System.Collections
{
for (int_cosize i = 0; i < mCount; i++)
{
if (mEntries[i].mHashCode >= 0 && mEntries[i].mValue == null) return true;
if (mEntries[i].mHashCode >= 0 && mEntries[i].mValue == value) return true;
}
return false;
}