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
public bool IsPrintableASCII(char c) { return c >= '\x20' && c <= '\x7e'; }