mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-27 12:08:00 +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
|
@ -13,6 +13,14 @@ namespace System
|
|||
case InvalidChar(int partialResult);
|
||||
}
|
||||
|
||||
public struct Simple : int
|
||||
{
|
||||
public override void ToString(String strBuffer)
|
||||
{
|
||||
((int)this).ToString(strBuffer);
|
||||
}
|
||||
}
|
||||
|
||||
public const int MaxValue = (sizeof(int) == 8) ? 0x7FFFFFFFFFFFFFFFL : 0x7FFFFFFF;
|
||||
public const int MinValue = (sizeof(int) == 8) ? -0x8000000000000000L : -0x80000000;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue