/// <summary>
        /// Digitação
        /// </summary>
        /// <param name="sKeyPressed"></param>
        public void SendKeyPress(string sKeyPressed)
        {
            try
            {
                IntPtr oIntPtr = WindowsControlClass.GetForegroundWindow();
                WindowsControlClass.SetForegroundWindow(oIntPtr);
                SendKeys.SendWait(sKeyPressed);
            }
            catch (Exception ex)
            {
                System.Console.WriteLine(ex.Message);
            }

            System.Console.WriteLine("Tecla [" + sKeyPressed + "] pressionada...");
        }