AjTalk.Compilers.SourceWriter.Write C# (CSharp) Method

Write() public method

public Write ( string text ) : void
text string
return void
        public void Write(string text)
        {
            this.WriteIndent();
            this.writer.Write(text);
            this.isNewLine = false;
        }