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
Use the .ToString() Method
String myString = "Hello, World"; foreach (Char c in myString) { String cString = c.ToString(); }