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 ' ';
        }