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
With C# 6 interpolation:
char ch = 'A'; string s = $"{ch}";
This shaves a few bytes. :)