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: " + dblPrice.ToString("c")
+ "\n The Total for the item is: " + dblTotal.ToString("c"));