Open shps951023 opened 6 months ago
@duszekmestre ❤thanks, e.g. ExcelOpenXmlSheetWriter.Async.cs and ExcelOpenXmlSheetWriter.cs, their logic and code 99% same, but miniexcel needs duplicate code to use async
, Task
, await
keyword.
I think these code can be merged.
Yes - I tried to do this but I have limited time for doing this. Some code can be reused and in latest PR i refactor one of the method to prepare string values to write them to the writer.
I started to reuse code in PR #602
In the next part I'll try to reuse code between different types of objects on saving.
@duszekmestre ❤thanks, e.g. ExcelOpenXmlSheetWriter.Async.cs and ExcelOpenXmlSheetWriter.cs, their logic and code 99% same, but miniexcel needs duplicate code to use
async
,Task
,await
keyword. I think these code can be merged.
I think it is not possible to completely reuse same code. Async/await method should be written separately. The only thing which is possible is creating same codebase to generate XML strings for both implementations to reuse and easier maintenance.
I saw that different types (data reader, data table, enumerable) are managed separately so many errors are done because of lack of implementation to one of them. This the hardest and most important thing to rewrite.
If you have any other idea please share with me.
Yes, my first idea is we can only maintain async
method like HttpClient
sync method just call async method GetAwaiter and GetResult
What do you mean by this? Maybe I can help