Convert String or Char to Keys object

后端 未结 3 895
攒了一身酷
攒了一身酷 2021-01-23 00:06

If I use the following code:

for (int i = 0; i < text.Length; i++)
    {
        char c = text[i];
        Keys k = (Keys)(byte)c;
        MessageBox.Show(c.T         


        
3条回答
提交回复
热议问题