Kimono.KMacroExpanderBase.ExpandMacrosShellQuote C# (CSharp) Method

ExpandMacrosShellQuote() public method

Same as above, but always starts at position 0, and unmatched closing parens and braces are treated as errors.
public ExpandMacrosShellQuote ( StringBuilder str ) : bool
str StringBuilder
return bool
        public bool ExpandMacrosShellQuote(StringBuilder str)
        {
            return (bool) interceptor.Invoke("expandMacrosShellQuote$", "expandMacrosShellQuote(QString&)", typeof(bool), typeof(StringBuilder), str);
        }

Same methods

KMacroExpanderBase::ExpandMacrosShellQuote ( StringBuilder str, int &pos ) : bool