Share via


IndentedStringBuilder.AppendJoin Method

Definition

Overloads

AppendJoin(IEnumerable<String>, String)

Concatenates the members of the given collection, using the specified separator between each member, and then appends the resulting string,

AppendJoin(String, String[])

Concatenates the members of the given collection, using the specified separator between each member, and then appends the resulting string,

AppendJoin(IEnumerable<String>, String)

Concatenates the members of the given collection, using the specified separator between each member, and then appends the resulting string,

public virtual Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder AppendJoin (System.Collections.Generic.IEnumerable<string> values, string separator = ", ");
abstract member AppendJoin : seq<string> * string -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
override this.AppendJoin : seq<string> * string -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
Public Overridable Function AppendJoin (values As IEnumerable(Of String), Optional separator As String = ", ") As IndentedStringBuilder

Parameters

values
IEnumerable<String>

The values to concatenate.

separator
String

The separator.

Returns

This builder so that additional calls can be chained.

Applies to

AppendJoin(String, String[])

Concatenates the members of the given collection, using the specified separator between each member, and then appends the resulting string,

public virtual Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder AppendJoin (string separator, params string[] values);
abstract member AppendJoin : string * string[] -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
override this.AppendJoin : string * string[] -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
Public Overridable Function AppendJoin (separator As String, ParamArray values As String()) As IndentedStringBuilder

Parameters

separator
String

The separator.

values
String[]

The values to concatenate.

Returns

This builder so that additional calls can be chained.

Applies to