SyntaxFix
Write A Post
Hire A Developer
Questions
Or you can convert it into Char Array first by:
string Something = "1,5,12,34,"; char[] SomeGoodThing=Something.ToCharArray[];
Now you have each character indexed:
indexed
SomeGoodThing[0] -> '1' SomeGoodThing[1] -> ','
Play around it