[]
Gets or sets whether styles are applied to parsed values when string values are converted to numbers or date/time values.
The default value is true.
public bool ParseStyle { get; set; }
Public Property ParseStyle As Boolean
CsvOpenOptions options = new CsvOpenOptions();
options.ParseStyle = false;
bool parseStyle = options.ParseStyle;
workbook.Open("path/to/source.csv", options);