[]
Loads async data from a file containing comma-separated values (.csv) into the current sheet.
public Task LoadCsvAsync(string fileName)
| Type | Name | Description |
|---|---|---|
| string | fileName | The name of a file containing data in .csv format. |
| Type | Description |
|---|---|
| Task | The task of represents an asynchronous operation. |
Loads async data from a stream containing comma-separated values (.csv) into the current sheet.
public Task LoadCsvAsync(Stream stream)
| Type | Name | Description |
|---|---|---|
| Stream | stream | A stream containing data in .csv format. |
| Type | Description |
|---|---|
| Task | The task of represents an asynchronous operation. |