在 c# 中使用 Excel Interop 从多个 .xlsx 文件中提取数据的最有效方法?
Most efficient way to extract data from multiple .xlsx files using Excel Interop in c#?
我刚刚开始接触 Excel Interop,想知道如何通过实施多线程或多任务来提高我的应用程序的性能。
我的代码看起来像这样 atm:
foreach(var path in arrayOfExcelFilePaths){
excelApp.Workbooks.Open(path);
}
foreach(var wb in excelApp.Workbooks){
//Read stuff and maybe write stuff
}
提前感谢任何对此进行调查的人。
我刚刚开始接触 Excel Interop,想知道如何通过实施多线程或多任务来提高我的应用程序的性能。
我的代码看起来像这样 atm:
foreach(var path in arrayOfExcelFilePaths){
excelApp.Workbooks.Open(path);
}
foreach(var wb in excelApp.Workbooks){
//Read stuff and maybe write stuff
}
提前感谢任何对此进行调查的人。