Can someone tell me how to use the CsvWriter to write a list of objects without blocking? It's not obvious to me.
Do I need first to call WriteRecords() and after this FlushAsync() or should I write each object one by one using NextRecordAsync()?
Actually, I would expect to use a dedicated method, but it's not there:
public Task WriteRecordsAsync(...);