When loading a CSV file into an Aspose.Cells Excel workbook, I get the following error:
Valid values are between 0 and 999, inclusive. Parameter name: millisecond
The cause is that Aspose is not handling microseconds in excess of 999499. For example, a DateTime value in the CSV like this will result in the error:
2021-12-14 16:33:59.999794
Here is my code to load the CSV file:
var loadOptions = new LoadOptions(LoadFormat.CSV);
var wb = new Workbook(fullPathToCsvFile, loadOptions);