[]
Saves async data from the current sheet into a comma-separated values (.csv) formatted file storage.
public Task SaveCsvAsync(string fileName)
| Type | Name | Description |
|---|---|---|
| string | fileName | The target (.csv) file name. |
| Type | Description |
|---|---|
| Task | The task of represents an asynchronous operation. |
Saves async data from the current sheet into a comma-separated values (.csv) formatted stream.
public Task SaveCsvAsync(Stream stream)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The target stream. |
| Type | Description |
|---|---|
| Task | The task of represents an asynchronous operation. |