public virtual bool Type(char c) { if (ChildContext != null) { return(ChildContext.Type(c)); } return(false); }
public bool KeyInput(char c) { return(ChildContext != null?ChildContext.Type(c) : Type(c)); }