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
I know ASCII wasn't specifically requested but this is a quick way to get a list of all the printable ASCII characters.
for (Int32 i = 0x20; i <= 0x7e; i++) { printableChars.Add(Convert.ToChar(i)); }
See this ASCII table.