You might want to use Char.IsControl(Char)
. That is what I’m using. You definitely do not want to use the <0x20
method because any non-latin character and most non-english characters will be above 127.
You might want to use Char.IsControl(Char)
. That is what I’m using. You definitely do not want to use the <0x20
method because any non-latin character and most non-english characters will be above 127.