Ancestry.QueryProcessor.Parse.TextEmitter.AppendLine C# (CSharp) Method

AppendLine() protected method

protected AppendLine ( string stringValue ) : void
stringValue string
return void
        protected void AppendLine(string stringValue)
        {
            Indent();
            Append(stringValue);
            NewLine();
        }