Flood.GUI.GwenInput.TranslateChar C# (CSharp) Метод

TranslateChar() статический приватный Метод

static private TranslateChar ( Keys key ) : char
key Keys
Результат char
        static char TranslateChar(Keys key)
        {
            if (key >= Keys.A && key <= Keys.Z)
                return (char)('a' + ((int)key - (int) Keys.A));
            return ' ';
        }