Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
fmazzant committed Nov 24, 2022
1 parent ece9de0 commit bfe0d6f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,12 @@ or you can to use the asynchronously method, like this:
var models = await csv.LoadFromFileAsync("file.csv");
```

for NET5_0_OR_GREATER or NETSTANDARD2_1_OR_GREATER, like this:

```c#
var models = await csv.LoadFromFileAsync("file.csv").ToListAsync();
```

The load method returns a collection of Model type items and takes as argument the file's path.

## Write
Expand Down

0 comments on commit bfe0d6f

Please sign in to comment.