when I press F2 then following code in my form keydown event return 113
MessageBox.Show(e.KeyValue.ToString());//If pressed key is F2 ->113
but when I want to get the Char from KeyValue from following code then it return "q"
MessageBox.Show(Char.ConvertFromUtf32(113));//return q
how can I reach to F2 from 113 keyvalue ?
As its a
KeyCode
cast to theKeys
enum?