BACnet.SchemaCompiler.CodeGen.CSharpTypeGenerator.CSharpEmitter.WriteLineRaw C# (CSharp) Method

WriteLineRaw() public method

Writes a single line of raw text to the stream
public WriteLineRaw ( string text ) : void
text string The text to write
return void
            public void WriteLineRaw(string text)
            {
                for (int i = 0; i < _indent; i++)
                    _writer.Write('\t');
                _writer.WriteLine(text);
            }