你们有没有人尝试在并行循环中使用 ABCPdf 库将 *.docx 文件转换为 *.pdf?
这是我在 Parallel.ForEach 循环中调用的方法
public void ConvertDocxToPdf(string fileIn, string fileOut)
{
var theDoc = new Doc();
theDoc.Read(fileIn);
theDoc.Save(fileOut);
theDoc.Clear();
}
它似乎很慢。我有 8 个核心,但只使用了 6 个。平均 CPU 使用率为 18%。