Replies: 3 comments
-
This seems to be an Excel issue! If I take a look inside the csv file everything is okay. If I open the csv file thru excel I get this strange characters. Hm? I'm using Office 365 and there is no option for importing a CSV with UTF-8. But, this is an office problem. You can close this issue, please. Thanks. |
Beta Was this translation helpful? Give feedback.
-
You might need to write the file using a specific encoding, which you would set on the |
Beta Was this translation helpful? Give feedback.
-
I would agree on an encoding. using (var writer = new StreamWriter(stream, Encoding.UTF8))
{...} |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi there,
thanks a lot for your amazing CsvHelper. It's pretty easy to implement.
I'm using .NET Core 3.1 and the CultureInfo seems not to work? I did this to give it a try:
This is what I get in the csv file for name: oneÄäÖöÜü
Here is my code I'm using so far:
The same result for so called German Umlaute (Ä,ä,Ö,ö,Ü,ü, etc.)?
Thanks a lot for your help.
Kindest regards
Beta Was this translation helpful? Give feedback.
All reactions