mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-17 23:56:05 +02:00
Made GetHashCode public for primitives
This commit is contained in:
parent
6dd49f5d9b
commit
b9debfe3bf
16 changed files with 16 additions and 16 deletions
|
@ -7,7 +7,7 @@ namespace System
|
|||
strBuffer.Append(((bool)this) ? "true" : "false");
|
||||
}
|
||||
|
||||
int IHashable.GetHashCode()
|
||||
public int GetHashCode()
|
||||
{
|
||||
return ((bool)this) ? 1 : 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue