Skip to content

Commit

Permalink
System newline in Addax
Browse files Browse the repository at this point in the history
  • Loading branch information
joelverhagen committed Jan 13, 2024
1 parent 30f199e commit 40ae38c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Addax.Formats.Tabular;
using System;
using System.Collections.Generic;
using System.IO;

Expand All @@ -14,7 +15,7 @@ public class Addax_Formats_Tabular : ICsvReader

public Addax_Formats_Tabular()
{
_dialect = new TabularDialect("\r\n", ',', '\"');
_dialect = new TabularDialect(Environment.NewLine, ',', '\"');
}

public List<T> GetRecords<T>(MemoryStream stream) where T : ICsvReadable, new()
Expand Down

0 comments on commit 40ae38c

Please sign in to comment.