在 C# 中,可以使用 Math.Round
方法来保留小数位数,并且可以动态设置需要保留的位数。以下是一个示例代码:
double number = 3.14159;
int decimals = 2; // 设置保留小数位数为 2
double roundedNumber = Math.Round(number, decimals);
Console.WriteLine(roundedNumber); // 输出结果为 3.14
在上面的示例中,我们将 number
设置为 3.14159
,然后通过 Math.Round
方法将其保留到小数点后 2 位,最后输出结果为 3.14
。您可以根据需要动态设置 decimals
来保留不同位数的小数。