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

IndentString() public method

Retrieves the current indentation string
public IndentString ( int modifier ) : string
modifier int The modifier to apply to the indentation level
return string
            public string IndentString(int modifier)
            {
                int indent = _indent + modifier;
                string ret = string.Empty;
                for (int i = 0; i < indent; i++)
                    ret += '\t';
                return ret;
            }