Appends a string followed by a newline character.
Example:
var sb = new StringBuilder ();
sb.appendLine ("line1");
sb.appendLine ("line2");
assert (sb.toString () == "line1\nline2\n");
| s |
the string to append before the newline. |
|
this StringBuilder for chaining. |