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 024e5dc commit bfc2964
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,16 @@ class Product {
}
```

Serializing to stream:
```csharp
CsvSerializer.Serialize(streamWriter, items, withHeaders: true);
```

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

# Supported Property Types
```csharp
bool
Expand Down

0 comments on commit bfc2964

Please sign in to comment.