What is the easiest way to parse a comma delimited string list of values into some kind of object that I can loop through, so that I can access the individual values easily?
Use a loop on the split values
string values = "0,1,2,3,4,5,6,7,8,9"; foreach(string value in values.split(',')) { //do something with individual value }