i have that VB code...
Dim htcsplit() As String = Split(value.Text.Replace(" ", ""), ",")
try to adapt this for c#.
Unluckily i cant write
string[] htcsplit = String.Split(value.Text.Replace(' ', null),',');
Because the literal cant be empty.
Is there a workaround ?