CSV.TryParseLine Method
Public Shared Function TryParseLine( _
ByVal line As String, _
ByRef row As String(), _
Optional ByVal settings As CSVSettings = null _
) As Boolean
This language is not supported or no code example is available.
public static bool TryParseLine(
string line,
out string[] row,
CSVSettings settings = null
)
This language is not supported or no code example is available.
public:
static bool TryParseLine(
String^ line,
array< String^ >^& row,
CSVSettings^ settings
)
This language is not supported or no code example is available.
Parameters
- line
- string
The line of text to parse
- row
- string[]
The array of fields found in the line
- settings
- CSVSettings
The CSV settings to use for this parsing operation (Default: CSV)
Return Value
boolFalse if there was an unterminated text qualifier in the line