I want to iterate over the alphabet like so:
foreach(char c in alphabet) { //do something with letter }
Is an array of chars the best way
var alphabet = Enumerable.Range(0, 26).Select(i => Convert.ToChar('A' + i));