[]
Gets or sets the row separator used when opening a CSV file.
The row separator is the string delimiter that separates records in the source CSV data.
public string RowSeparator { get; set; }
Public Property RowSeparator As String
CsvOpenOptions options = new CsvOpenOptions();
options.RowSeparator = "\r\n";
string rowSeparator = options.RowSeparator;
workbook.Open("path/to/source.csv", options);