append


Description:

public StringBuilder append (string s)

Appends a string to the end of this builder.

Example:

    var sb = new StringBuilder ();
sb.append ("Hello");
sb.append (" World");
assert (sb.toString () == "Hello World");

Parameters:

s

the string to append.

Returns:

this StringBuilder for chaining.