public static void Main()
Console.WriteLine("Round 1.25 Default: " + Math.Round(1.25,1) + " why!!?!?!");
Console.WriteLine("Round 1.35 Default: " + Math.Round(1.35,1));
Console.WriteLine("Round 1.250000001 Default: " + Math.Round(1.250000001,1));
Console.WriteLine("Round 1.25 AwayFromZero: " + Math.Round(1.25,1, MidpointRounding.AwayFromZero));
Console.WriteLine("Round 1.35 AwayFromZero: " + Math.Round(1.35,1, MidpointRounding.AwayFromZero));