C#decimaltostring###
The code decimal.ToString("#.##") is used to format a decimal number to have a maximum of two decimal places, and it will round the number if necessary.
Here is an example usage of this code:
decimal number = 123.45678m;
string formattedNumber = number.ToString("#.##");
Console.WriteLine(formattedNumber);
Output:
123.46
In this example, the decimal number 123.45678 is formatted using ToString("#.##"), which results in 123.46 being printed to the console.
原文地址: https://www.cveoy.top/t/topic/iiJr 著作权归作者所有。请勿转载和采集!