mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-20 08:58:00 +02:00
Fixed ContainsValue
This commit is contained in:
parent
8975b30e0f
commit
e004b6fe17
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue