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
Create a new string from the char.
String cString = new String(new char[] { c });
or
String cString = c.ToString();