Skip to content

Instantly share code, notes, and snippets.

@AntMooreWebDev
Created March 30, 2017 10:55
Show Gist options
  • Save AntMooreWebDev/5d841ef2b522430b1204ac1e9dfd3d49 to your computer and use it in GitHub Desktop.
Save AntMooreWebDev/5d841ef2b522430b1204ac1e9dfd3d49 to your computer and use it in GitHub Desktop.
A few handy lists of strings
List<char> a = "abcdefghijklmnopqrstuvwxyz".ToList(); // lowercase alphabet
List<char> b = "ABCDEFGHIJKLMNOPQRSTUVWXYZ".ToList(); // uppercase alphabet
List<char> c = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ".ToList(); // both cases alphabet
List<char> d = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".ToList(); // both cases alphabet and integers
List<char> e = "abcdefghijklmnopqrstuvwxyz0123456789".ToList(); // lowercase alphabet and integers
List<char> f = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".ToList(); // uppercase alphabet and integers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment