Add Numeric For Loops

This commit is contained in:
2018-11-23 14:38:45 +01:00
parent 1928979b40
commit d2c14d213c
21 changed files with 256 additions and 22 deletions

View File

@@ -5,7 +5,7 @@ namespace Upsilon.BaseTypes.Number
{
internal class NumberLong : Number
{
public long Value { get; }
public long Value { get; set; }
protected override bool IsFloat { get; } = false;
public NumberLong(long val)