Please take a look at the following line of code:
TotalFormatted = totalExpenses.ToString("C3", CultureInfo.CreateSpecificCulture("en-GB"))
I am expecting this to output a number as a formatted string with the pound symbol (£1,500) but instead it is outputting GBP1,500
How can I ensure it outputs the actual symbol instead of GBP?