FastColoredTextBoxNS.MacrosManager.AddCharToMacros C# (CSharp) Method

AddCharToMacros() public method

Adds the char to current macro
public AddCharToMacros ( char c, Keys modifiers ) : void
c char
modifiers Keys
return void
        public void AddCharToMacros(char c, Keys modifiers)
        {
            macro.Add(new KeyValuePair<char, Keys>(c, modifiers));
        }