I have a very simple function to same a worksheet to csv format.
After I have written data to the file and saved to .xlsx, I call a function
and it is throwing an exception.
System.ArgumentOutOfRangeException was unhandled
Message=Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index
Source=mscorlib
ParamName=index
StackTrace:
at System.Collections.ArrayList.get_Item(Int32 index)
at Aspose.Cells.Row.(Int32 , Int32 , Int32 )
at ..(Int32 )
at ..( )
at ..Read( )
at ..( , String )
at ..( , String )
at ..()
at ..Read()
at ..(Workbook , LoadOptions )
at Aspose.Cells.Workbook.(Stream , LoadOptions , Boolean )
at Aspose.Cells.Workbook.(String , LoadOptions )
at Aspose.Cells.Workbook..ctor(String file)
at innalabs.windows.gu_acq.GUAcquisition.create_raw_text_csv(String file, String se_file_csv) .........
It is a large file, approx. 8MB and there are about 60,000 rows in the worksheet I want to save.
This was working fine with an older version, I updated today this started happening.
Any help in resolving this issues appreciated.