Tagged Questions
The bankers-rounding tag has no wiki summary.
28
votes
6answers
60k views
How do you round a number to two decimal places in C#?
I want to do this using the Math.Round function
6
votes
4answers
1k views
Rounding Standards - Financial Calculations
I am curious about the existence of any "rounding" standards" when it comes to the calculation of financial data. My initial thoughts are to perform rounding only when the data is being presented to ...
6
votes
5answers
498 views
Is there a way to do 'correct' arithmetical rounding in .NET? / C#
I'm trying to round a number to it's first decimal place and, considering the different MidpointRounding options, that seems to work well. A problem arises though when that number has sunsequent ...
3
votes
5answers
722 views
C# banker's rounding error
double a = 18.565
return Math.Round(a,2)
..returns 18.57.
For every other number I tried banker's rounding worked as expected, for example Math.Round(2.565,2) returned 2.56.
Any clue why and when ...
1
vote
3answers
68 views
round function in c #
public static decimal Round(
decimal d,
int decimals
)
The decimals parameter specifies the number of fractional digits in the return value and ranges from 0 to 28. If decimals is zero, an ...
1
vote
5answers
1k views
.NET currency formatter: can I specify the use of banker's rounding?
Does anyone know how I can get a format string to use bankers rounding? I have been using "{0:c}" but that doesn't round the same way that bankers rounding does. The Math.Round() method does bankers ...