Skip to content

Instantly share code, notes, and snippets.

@nrkn
Created March 23, 2012 00:19
Show Gist options
  • Save nrkn/2165741 to your computer and use it in GitHub Desktop.
Save nrkn/2165741 to your computer and use it in GitHub Desktop.
C# get valid chars
var validChars = (
Enumerable
.Range( '0', 10 )
.Concat( Enumerable.Range( 'A', 26 ) )
.Concat( Enumerable.Range( 'a', 26 ) )
.Select( i => (char) i )
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment