fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. double value = 0.01075;
  8. Console.WriteLine(Math.Round(value, 4, MidpointRounding.AwayFromZero));
  9. decimal value2 = 0.01075m;
  10. Console.WriteLine(Math.Round(value2, 4, MidpointRounding.AwayFromZero));
  11. }
  12. }
Success #stdin #stdout 0.01s 131520KB
stdin
Standard input is empty
stdout
0.0107
0.0108