2,892 questions
Is this what you want? Note how I've done the format without ToString.
private void button1_Click(object sender, EventArgs e)
{
int intNumDays = 8;
decimal decLocationFee = 23.77m;
decimal decRegistrationFee = 12.99m;
decimal decTotalCost = intNumDays * decLocationFee + decRegistrationFee;
lstCost.Items.Add($"{decTotalCost:C}");
}