Hi,
getStringValue have a problem with rounding some specific numbers.
(version: aspose-cells-8.7.2)
Example :
//In excel file there is only one sheet with one value 40.15 and exel round this number to 40.2
<pre style=“font-family: “Courier New”; font-size: 9pt; background-color: rgb(255, 255, 255);”>Workbook loadWorkbook = new Workbook(excelPath);
String test = loadWorkbook.getWorksheets().get(0).getCells().get(0,0).getStringValue();
System.out.print(test);
<pre style=“font-family: “Courier New”; font-size: 9pt; background-color: rgb(255, 255, 255);”>Regards
String test = loadWorkbook.getWorksheets().get(0).getCells().get(0,0).getStringValue();
System.out.print(test);
// The result code above was <b style=“font-family: “Courier New”; font-size: 9pt;”>40.1<pre style=“font-family: “Courier New”; font-size: 9pt; background-color: rgb(255, 255, 255);”>When I tried to process this same file with your .Net library from nuget the result was correct.<pre style=“font-family: “Courier New”; font-size: 9pt; background-color: rgb(255, 255, 255);”>
<pre style=“font-family: “Courier New”; font-size: 9pt; background-color: rgb(255, 255, 255);”>Regards