I\'ve got a question.
I have a decimal and I want to round this at 2 decimals, not at the ordinary way but
0.2013559322033898305084745763
desired result:
Not directly, so you have to use a trick:
Math.Ceiling(x * 100) / 100;