mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-01 13:56:00 +02:00
Removed deprecated IOp* conformance, added missing consts and properties
This commit is contained in:
parent
783bdb15be
commit
ffee0a2aa3
15 changed files with 67 additions and 30 deletions
|
@ -1,12 +1,21 @@
|
|||
namespace System
|
||||
{
|
||||
struct Char32 : char32, IHashable
|
||||
struct Char32 : char32, IHashable, IIsNaN
|
||||
{
|
||||
public int GetHashCode()
|
||||
{
|
||||
return (int)this;
|
||||
}
|
||||
|
||||
bool IIsNaN.IsNaN
|
||||
{
|
||||
[SkipCall]
|
||||
get
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public extern char32 ToLower
|
||||
{
|
||||
get;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue