AsynqFramework.CodeWriter.CodeWriterBase.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            StringBuilder sb = new StringBuilder();

            using (StringWriter sw = new StringWriter(sb))
            {
                Format(sw, null, 0, null);
                sw.Flush();
            }

            return sb.ToString();
        }

Same methods

CodeWriterBase::ToString ( string indentString, int indentationLevel, string newLine ) : string