static void CalculateTotalPrice(double price, ref double total)
public static void Main()
CalculateTotalPrice(dblPrice, ref dblTotal);
Console.WriteLine("your subtotal for the item is: " + dblPrice.ToString("C"));
Console.WriteLine("your total for the item is: " + dblTotal.ToString("C"));