Constructs a StringJoiner with the given delimiter, prefix, and suffix.
Example:
var joiner = new StringJoiner (", ", "(", ")");
| delimiter |
the separator placed between elements. |
| prefix |
the string prepended to the result. |
| suffix |
the string appended to the result. |