IronRuby.Builtins.MutableString.StringContent.Append C# (CSharp) Method

Append() public method

public Append ( Content content, int start, int count ) : void
content Content
start int
count int
return void
            public override void Append(Content/*!*/ content, int start, int count) {
                content.AppendTo(this, start, count);
            }

Same methods

MutableString.StringContent::Append ( Stream stream, int count ) : void
MutableString.StringContent::Append ( byte b, int repeatCount ) : void
MutableString.StringContent::Append ( byte bytes, int start, int count ) : void
MutableString.StringContent::Append ( char c, int repeatCount ) : void
MutableString.StringContent::Append ( char chars, int start, int count ) : void
MutableString.StringContent::Append ( string str, int start, int count ) : void