✅ Program csv extraction
I created a program but when it extracts as a csv file its got a  symbol and one of the values extract into two separate cells

1,400?Compile: 326.461ms | Execution: 44.050ms | React with ❌ to remove this embed.
writer.WriteLine($"{expense.Key},\"{expense.Value:C2}\"");
1,400rent,300.00
food,300.00
remaining,1,400.00rent | 300.00 |
food | 300.00 |
remaining | 1 | 400.00rent,300.00
food,300.00
remaining,"1,400.00"writer.WriteLine($"{expense.Key},\"{expense.Value:C2}\"");CultureInfo cultureInfo = CultureInfo.CreateSpecificCulture("en-US");
Thread.CurrentThread.CurrentCulture = cultureInfo;
var v = 1400.00m;
v.ToString("C2")$1,400.00StreamWriter(fileName))StreamWriter(fileName, Encoding.UTF8))StreamWriter(fileName, false, Encoding.UTF8))