AvalonStudio.Toolchains.Clang.ArmGCCLinkTemplateBase.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 ArgumentNullException("indent");
			}
			CurrentIndent = CurrentIndent + indent;
			indentLengths.Add(indent.Length);
		}