Appends a single character to the end of this builder.
Example:
var sb = new StringBuilder ();
sb.appendChar ('A');
sb.appendChar ('B');
assert (sb.toString () == "AB");
| c |
the character to append. |
|
this StringBuilder for chaining. |