I am trying to store the value "10,23" in an Excel file using the ClosedXML Library but the value inserted is "1023".
The code I have is:
XLWorkbook workbook = new XLWorkbook();
IXLWorksheet worksheet = workbook.Worksheets.Add("sheet1");
worksheet.Cell(0, 0).Value = "10,23";
workbook.SaveAs("c:\temp\file.xlsx");