Class CsvHelper
Helpers for working with the CSV (comma delimited) format.
public static class CsvHelper
- Inheritance
-
CsvHelper
- Inherited Members
Methods
ParseRow(string)
Parses a row of CSV data.
public static string[] ParseRow(string text)
Parameters
text
stringThe CSV row text to parse.
Returns
Remarks
White space is not trimmed from the fields.
Exceptions
- ArgumentNullException
The
text
parameter is null.