Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ronnygunawan authored Nov 19, 2023
1 parent 65e7004 commit a5fb7fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ CsvSerializer.Serialize(streamWriter, items, withHeaders: true);

Deserializing from stream:
```csharp
IEnumerable<Item> items = CsvSerializer.Deserialize(streamReader, hasHeaders: true, separator: ';');
IEnumerable<Item> items = CsvSerializer.Deserialize<Item>(streamReader, hasHeaders: true);
```

## Supported Property Types
Expand Down

0 comments on commit a5fb7fe

Please sign in to comment.