blob: 91d88ee219a79418095d49bba8b859827808e7bc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
using System;
namespace IOL.Helpers
{
public static class DoubleHelpers
{
public static string ToStringWithFixedDecimalPoints(this double value) {
return $"{Math.Truncate(value * 10) / 10:0.0}";
}
}
}
|