Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian918 committed Dec 8, 2023
1 parent fd9f3d0 commit 47b2467
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ Simple, open & free Csv mapper libary for C# .NET Core
## Getting Started

```csharp
await using var serviceProvider = serviceCollection.BuildServiceProvider();
var logger = serviceProvider.GetRequiredService<ILogger<Program>>();

// ----- Read csv File
// Open File Stream
Expand Down Expand Up @@ -54,4 +51,7 @@ List<Address> newAddresses = new List<Address>()
}
};

// Write items as IEnumerable<T>
await ICsvPortable.ToStream(newAddresses, writeStream);

```

0 comments on commit 47b2467

Please sign in to comment.