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

Parses the CSV string and loads all individual values in a string array.

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

Syntax

C#
public static string[] ParseCsv(
	string str
)
Visual Basic (Declaration)
Public Shared Function ParseCsv ( _
	str As String _
) As String()
Visual C++
public:
static array<String^>^ ParseCsv(
	String^ str
)

Parameters

str
Type: System..::.String
The csv string.

Return Value

The string array containing the parsed string values.

See Also