You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Formatting numbers only works with double, int and short.
Other numeric types should be supported, such as byte, sbyte, ushort, uint, long, ulong, float, decimal.
I believe it's because the evaluator only checks for double, int and short.
I might be more appropriate to try casting to IConvertible and use IConvertible.ToDouble.
Similarly it would be nice to support System.DateOnly and System.TimeOnly
The text was updated successfully, but these errors were encountered:
Formatting numbers only works with double, int and short.
Other numeric types should be supported, such as byte, sbyte, ushort, uint, long, ulong, float, decimal.
I believe it's because the evaluator only checks for double, int and short.
I might be more appropriate to try casting to
IConvertible
and useIConvertible.ToDouble
.Similarly it would be nice to support
System.DateOnly
andSystem.TimeOnly
The text was updated successfully, but these errors were encountered: