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?
var stringToSplit = "0, 10, 20, 30, 100, 200";
// To parse your string var elements = test.Split(new[] { ',' }, System.StringSplitOptions.RemoveEmptyEntries);
// To Loop through foreach (string items in elements) { // enjoy }