I\'m just wondering if there is a method in .NET 2.0 that checks whether a character is printable or not – something like isprint(int) from standard C.
isprint(int)
private bool IsPrintableCharacter(char candidate) { return !(candidate < 0x20 || candidate > 127); }