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
Enumerable.Range(65, 26).Select(a => new { A = (char)(a) }).ToList().ForEach(c => Console.WriteLine(c.A));