StringBuilderPolyfillExtensionAppendJoin Method

Overload List

AppendJoin(StringBuilder, Char, Object)Concatenates the string representations of the elements in the provided array of objects, using the specified separator character between each member, then appends the result to builder.
AppendJoin(StringBuilder, Char, String)Concatenates the Strings of the provided array, using the specified Char separator between each String, then appends the result to builder.
AppendJoin(StringBuilder, String, Object)Concatenates the string representations of the elements in the provided array of objects, using the specified separator between each member, then appends the result to builder.
AppendJoin(StringBuilder, String, String)Concatenates the Strings in the provided array of objects, using the specified separator between each member, then appends the result to builder.
AppendJoinT(StringBuilder, Char, IEnumerableT)Concatenates the string representations of the elements in the provided collection, using the specified separator character between each member, then appends the result to builder.
AppendJoinT(StringBuilder, String, IEnumerableT)Concatenates the string representations of the elements in the provided collection, using the specified separator between each member, then appends the result to builder.

See Also