public static void Main()
Console.WriteLine(d == 1230.93);
Console.WriteLine("This is half the amount:" + Math.Round(1230.93 / 2 , 2, MidpointRounding.AwayFromZero));
Console.WriteLine("This is half the amount:" + Math.Round(d / 2 , 2, MidpointRounding.AwayFromZero));