Skip to content

Commit 259c58a

Browse files
committed
Readme update
1 parent 7b201b2 commit 259c58a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ A very simple and very fast CSV-export tool for C#.
33

44
[![.NET](https://github.com/jitbit/CsvExport/actions/workflows/dotnet.yml/badge.svg)](https://github.com/jitbit/CsvExport/actions/workflows/dotnet.yml)
55

6+
Focused on speed and memory usage when streaming large exports in web-apps.
7+
68
## V3 Breaking changes:
79

810
- .NET 8 targeting (use v2 for .NET Framework, we'll backport critical fixes)
@@ -87,7 +89,7 @@ Also, methods `ExportToFile` and `WriteToStream` and `ExportToBytes` offer an op
8789

8890
### Using with ASP.NET Core:
8991

90-
For big CSV files (megabytes) use `WriteToStreamAsync` and write to `Response.Body` directly. This is very important to save memory usage. Here's a handy heper class:
92+
For big CSV files (megabytes) use `WriteToStreamAsync` and write to `Response.Body` directly. This is very important to save memory usage. Here's a handy helper class:
9193

9294
```c#
9395
public class CsvExportResult(Csv.CsvExport csv, string fileName) : ActionResult

0 commit comments

Comments
 (0)