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

Convert a csv string to its comma separated equivalent.

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

Syntax

C#
public static string ConvertFromCsvString(
	string text
)
Visual Basic (Declaration)
Public Shared Function ConvertFromCsvString ( _
	text As String _
) As String
Visual C++
public:
static String^ ConvertFromCsvString(
	String^ text
)

Parameters

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

Return Value

The comma separated string with all the quotes stripped off.

See Also