public static void CalculateTotalPrice(double price, ref double total)
public static void Main()
CalculateTotalPrice(dblPrice, ref dblTotal);
Console.WriteLine("The SubTotal for the item is: {0:C}", dblPrice);
Console.WriteLine("The Total for the item is: {0:C}", dblTotal);