AutoTyper.AutoTyper.AutoTyper C# (CSharp) Метод

AutoTyper() публичный Метод

Default constructor
public AutoTyper ( string autoTypedText ) : System
autoTypedText string List of autotyped text
Результат System
        public AutoTyper(string[] autoTypedText)
        {
            for (int i = 0; i < Math.Min(autoTypedText.Length, this.AutoTypedText.Length); i++)
            {
                this.AutoTypedText[i] = autoTypedText[i];
            }
            _proc = new LowLevelKeyboardProc(HookCallback);
            _hookId = SetHook(_proc);
        }
        #endregion