AvalonStudio.Projects.CPlusPlus.CPlusPlusClassHeaderTemplateBase.PushIndent C# (CSharp) Method

PushIndent() public method

Increase the indent
public PushIndent ( string indent ) : void
indent string
return void
        public void PushIndent(string indent)
        {
            if ((indent == null))
            {
                throw new global::System.ArgumentNullException("indent");
            }
            this.currentIndentField = (this.currentIndentField + indent);
            this.indentLengths.Add(indent.Length);
        }
        /// <summary>