Alexandria.RichTextBuilder.EmitCodeIndex C# (CSharp) Méthode

EmitCodeIndex() static private méthode

static private EmitCodeIndex ( StringBuilder builder, string code, int index ) : void
builder StringBuilder
code string
index int
Résultat void
        static void EmitCodeIndex(StringBuilder builder, string code, int index)
        {
            builder.EnsureCapacity(builder.Length + 8 + code.Length);
            builder.Append('\\');
            builder.Append(code);
            builder.Append(index);
            builder.Append(' ');
        }

Same methods

RichTextBuilder::EmitCodeIndex ( string code, int index ) : void