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

Converts a comma separated string into its csv counterpart. The output string consists of quoted values separated by commas. For example the string a,b,c will be converted to "a","b","c"

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

Syntax

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

Parameters

text
Type: System..::.String
The input comma separated string

Return Value

The output csv converted string

See Also