[This is preliminary documentation and is subject to change.]

Reads a line from the comma separated StringReader. This function takes care of the fact that the csv line can span across multiple lines.

Namespace:  OfficeClip.Utils
Assembly:  OfficeClip.Utils (in OfficeClip.Utils)
Version: 8.1.1.0

Syntax

C#
public static string ReadCsvLine(
	StringReader sr
)
Visual Basic (Declaration)
Public Shared Function ReadCsvLine ( _
	sr As StringReader _
) As String
Visual C++
public:
static String^ ReadCsvLine(
	StringReader^ sr
)

Parameters

sr
Type: System.IO..::.StringReader
The input reader from where the next line is read.

Return Value

The line in the csv format.

See Also