G
Guest
Why does the following code
char l_ch = Convert.ToChar(
e.KeyCode);
give me the value 226 ('â') and not 60 ('<') when I press '<' ?
What am I doing wrong? I have also tried
char l_ch = Convert.ToChar(
e.KeyCode,
CultureInfo.InvariantCulture);
char l_ch = Convert.ToChar(
e.KeyCode);
give me the value 226 ('â') and not 60 ('<') when I press '<' ?
What am I doing wrong? I have also tried
char l_ch = Convert.ToChar(
e.KeyCode,
CultureInfo.InvariantCulture);