Hi,
I tried to load file by Aspose Cell version: 20.6.5 and an exception is thrown, but it’s success in older version: 19.10.
My sample: sample.zip (50.6 KB).
My code:
try
{
var inStream = new FileStream(inputXlsFile, FileMode.Open,FileAccess.Read, FileShare.ReadWrite);
var opt = new LoadOptions
{
MemorySetting = MemorySetting.MemoryPreference
};
var workbook = new Workbook(inStream, opt);
}
catch(Exception e)
{
string err = e.Message;
}
Please check and give me feedback.
Thank you.