mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
26 lines
678 B
C#
26 lines
678 B
C#
|
using System;
|
||
|
|
||
|
namespace BTCPayServer.Rating
|
||
|
{
|
||
|
public static class Extensions
|
||
|
{
|
||
|
public static decimal RoundToSignificant(this decimal value, ref int divisibility)
|
||
|
{
|
||
|
if (value != 0m)
|
||
|
{
|
||
|
while (true)
|
||
|
{
|
||
|
var rounded = decimal.Round(value, divisibility, MidpointRounding.AwayFromZero);
|
||
|
if ((Math.Abs(rounded - value) / value) < 0.001m)
|
||
|
{
|
||
|
value = rounded;
|
||
|
break;
|
||
|
}
|
||
|
divisibility++;
|
||
|
}
|
||
|
}
|
||
|
return value;
|
||
|
}
|
||
|
}
|
||
|
}
|