You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Concatenates the string representations of the elements in a sequence, using the specified delimiter between each element.
11
+
/// </summary>
12
+
/// <typeparam name="T">The type of the elements in the sequence.</typeparam>
13
+
/// <param name="values">The sequence of values to concatenate. Each value will be converted to a string using its <see cref="object.ToString()"/> method.</param>
14
+
/// <param name="delimiter">The string to use as a delimiter between elements. If <see langword="null"/>, a comma (",") is used by default.</param>
15
+
/// <returns>
16
+
/// A string that consists of the string representations of the elements in <paramref name="values"/> delimited by the <paramref name="delimiter"/> string.
17
+
/// If <paramref name="values"/> is empty, returns <see cref="string.Empty"/>.
18
+
/// </returns>
19
+
/// <remarks>
20
+
/// <see langword="null"/> elements in the sequence will be converted to empty strings in the result.
21
+
/// This method is equivalent to calling <see cref="string.Join{T}(string, IEnumerable{T})"/> with the provided parameters.
0 commit comments