How to solved error: Convert from string to char in Split text with C#

Hi,

The following document helps you.

A character literal represents a single character, and consists of a character in quotes, as in 'a'.

So the expression should be

arrStr = yourString.Split(',',StringSplitOptions.None)

Regards,