mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-25 02:58:02 +02:00
Extensive runtime refactor to reduce generated executable sizes
This commit is contained in:
parent
4e750a7e1a
commit
ddd9b1b218
74 changed files with 2514 additions and 717 deletions
|
@ -11,6 +11,14 @@ namespace System
|
|||
case InvalidChar(uint partialResult);
|
||||
}
|
||||
|
||||
public struct Simple : uint
|
||||
{
|
||||
public override void ToString(String strBuffer)
|
||||
{
|
||||
((uint)this).ToString(strBuffer);
|
||||
}
|
||||
}
|
||||
|
||||
public const uint MaxValue = (sizeof(uint) == 8) ? 0xFFFFFFFFFFFFFFFFUL : 0xFFFFFFFFL;
|
||||
public const uint MinValue = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue