public static void Main(string[] args)
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);
public static void CalculateTotalPrice(double price, ref double total)
total = price + (price * 0.05);