Exemple #1
0
        public void Backspace()
        {
            if (Error.Length > 0)
            {
                Error = Error.Substring(0, Error.Length - 1);
                return;
            }

            if (Typed.Length > 0)
            {
                Typed = Typed.Substring(0, Typed.Length - 1);
            }
        }