I\'d like to be able to get a char array of all the printable characters in C#, does anybody know how to do this?
edit:
By printable I mean
A LINQ solution (based on Fredrik Mörk's):
Enumerable.Range(char.MinValue, char.MaxValue).Select(c => (char)c).Where( c => !char.IsControl(c)).ToArray();