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

AppendFormatLine() protected method

protected AppendFormatLine ( string stringValue ) : void
stringValue string
return void
        protected void AppendFormatLine(string stringValue, params object[] paramsValue)
        {
            Indent();
            AppendFormat(stringValue, paramsValue);
            NewLine();
        }