CsvFile.Parse method
Version 0.0.2
.NET Framework 4.7
Namespace | Skybrud.Csv |
---|---|
Assembly | Skybrud.Csv.dll |
Parse(string)
Static
Parses the specified text
into an instance of CsvFile, using
DefaultSeparator as a separator.
public static CsvFile Parse(string text)
Parameters
text
String
The text representing the contents of the CSV file.
Parse(string, CsvSeparator)
Static
Parses the specified text
into an instance of CsvFile, using the specified
separator
.
public static CsvFile Parse(string text, CsvSeparator separator)
Parameters
text
String
The text representing the contents of the CSV file.
separator
CsvSeparator
The separator used in the CSV file.