double[] priceList = new double[] { 15.30, 15.60, 18.50 };
double total = 0; 
           
foreach(var price in priceList)
{
     total += price;
}

Console.WriteLine(total.ToString("f"));