Possible Duplicate:
Generating an array of letters in the alphabet in C#
(Theoretical question only, was just pondering it as a writing a filtering system (not using an alphabet, but got me thinking)).
So lets say I want to create a filter list of all the capital letters (A-Z) in the English alphabet plus the word "All"
All A B C D E ... X Y Z
And convert it to a List<string>
what is the most efficient way to do this in C# Without using the hard coded {"A","B"}
method.
Not a duplicate of This question
The question listed above deals with conversion to a plain and simple character array, which wouldn't allow for the ALL portion. And to take that and convert I believe would involve at least a copy + cast.