예제 #1
0
        public virtual bool Type(char c)
        {
            if (ChildContext != null)
            {
                return(ChildContext.Type(c));
            }

            return(false);
        }
예제 #2
0
 public bool KeyInput(char c)
 {
     return(ChildContext != null?ChildContext.Type(c) : Type(c));
 }