Handle if else statements

This commit is contained in:
2018-11-13 13:54:51 +01:00
parent 1aee448999
commit 56f3777053
11 changed files with 142 additions and 16 deletions

View File

@@ -1,3 +1,4 @@
using System;
using System.Globalization;
namespace Upsilon.BaseTypes.Number
@@ -21,5 +22,10 @@ namespace Upsilon.BaseTypes.Number
{
return Value.ToString(CultureInfo.InvariantCulture);
}
public static explicit operator long(NumberLong n)
{
return n.Value;
}
}
}