aboutsummaryrefslogtreecommitdiffstats
path: root/src/IOL.Helpers/DoubleHelpers.cs
blob: 44f01d52e720b61874c3d034083e5b106bcc883b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System;

namespace IOL.Helpers;

public static class DoubleHelpers
{
	public static string ToStringWithFixedDecimalPoints(this double value) {
		return $"{Math.Truncate(value * 10) / 10:0.0}";
	}
}