I\'d like to enumerate a string and instead of it returning chars I\'d like to have the iterative variable be of type string. This pro
string
chars
You have two options. Create a string object or call ToString method.
ToString
String cString = c.ToString(); String cString2 = new String(c, 1); // second parameter indicates // how many times it should be repeated