Skip to content

Instantly share code, notes, and snippets.

@mafis
Created March 31, 2011 08:10
Show Gist options
  • Select an option

  • Save mafis/896015 to your computer and use it in GitHub Desktop.

Select an option

Save mafis/896015 to your computer and use it in GitHub Desktop.
public static List<string> GetAlphabet()
{
List<string> alphabet = new List<string>();
for (int intCount = 65; intCount <= 90; intCount++)
alphabet.Add(((char)intCount).ToString());
return alphabet;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment