示例#1
0
    string convert(int indent, string command)
    {
        var buf = indent > 0 ? new string(' ', indent) : string.Empty;

        buf += command;
        var output = G.generate_for_inserting_src(m_excel, buf, indent);

        return(output);
    }