Hi,
This is more of a query than an issue; we found that when we open a file using Aspose.Cells, two instances of the assembly are created. I have attached a screenshot of what I see when using “Process Explorer” while selecting the process for the application in debug mode.
I asked this question as we have concerns on the impact of this second instance; is the second instance used for some background processing or something?
We are the following code block to open an Excel file.
OpenFileDialog odialog = new OpenFileDialog();odialog.Filter = “Excel Files (*.xlsx) | *.xlsx”;
DialogResult result = odialog.ShowDialog();
if (result == DialogResult.OK)
{
Workbook wb = new Workbook(odialog.FileName);}