Package: Spire.Office 7.5.4
Question: Is writing to multiple worksheets parallelly thread-safe?
We have a use case where we need to write data to multiple worksheets. We are exploring the use of
- Code: Select all
worksheet.Range[rowIndex, columnIndex].Value = data
Please note that, we are not trying to write parallelly in the same worksheet. Each worksheet will be processed in a separate thread. So, the question is more about whether we can process multiple worksheets parallelly.