|
CsvReaderFromText Method
|
Creates a new CsvReader to read from a string.
Namespace:
Accord.IO
Assembly:
Accord.IO (in Accord.IO.dll) Version: 3.8.0
Syntax public static CsvReader FromText(
string text,
bool hasHeaders
)
Public Shared Function FromText (
text As String,
hasHeaders As Boolean
) As CsvReader
Request Example
View SourceParameters
- text
- Type: SystemString
The text containing the fields in the CSV format. - hasHeaders
- Type: SystemBoolean
if field names are located on the first non commented line, otherwise, .
Return Value
Type:
CsvReaderSee Also