StringUtility.Join method (1 of 4)

Joins the specified strings into one string.

public static string Join(this IEnumerable<string?> strings)
parameter description
strings The strings.

Return Value

All of the strings concatenated with no separator.

See Also


StringUtility.Join method (2 of 4)

Joins the specified strings into one string.

public static string Join(this string[] array)
parameter description
array The strings.

Return Value

All of the strings concatenated with no separator.

See Also


StringUtility.Join method (3 of 4)

Joins the specified strings using the specified separator.

public static string Join(this IEnumerable<string?> strings, string? separator)
parameter description
strings The strings.
separator The separator. (The empty string is used if null.)

Return Value

All of the strings concatenated with the specified separator.

See Also


StringUtility.Join method (4 of 4)

Joins the specified strings using the specified separator.

public static string Join(this string[] array, string separator)
parameter description
array The strings.
separator The separator. (The empty string is used if null.)

Return Value

All of the strings concatenated with the specified separator.

See Also