I have just started getting into Excel Interop and was wondering how I could improve the performance of my application by implementing either multithreading or multitasking.
My code looks something like this atm:
foreach(var path in arrayOfExcelFilePaths){
excelApp.Workbooks.Open(path);
}
foreach(var wb in excelApp.Workbooks){
//Read stuff and maybe write stuff
}
Thanks in advance for anybody looking into this.