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 and appends the members of a collection, using the specified separator between each member.
84
+
/// </summary>
85
+
/// <typeparam name="T">The type of the members of values.</typeparam>
86
+
/// <param name="sb">A reference to this instance after the append operation has completed.</param>
87
+
/// <param name="separator">The string to use as a separator. separator is included in the concatenated and appended strings only if values has more than one element.</param>
88
+
/// <param name="values">A collection that contains the objects to concatenate and append to the current instance of the string builder.</param>
89
+
/// <returns>A reference to this instance after the append operation has completed.</returns>
/// Concatenates and appends the members of a collection, using the specified separator between each member.
130
-
/// </summary>
131
-
/// <typeparam name="T">The type of the members of values.</typeparam>
132
-
/// <param name="sb">A reference to this instance after the append operation has completed.</param>
133
-
/// <param name="separator">The string to use as a separator. separator is included in the concatenated and appended strings only if values has more than one element.</param>
134
-
/// <param name="values">A collection that contains the objects to concatenate and append to the current instance of the string builder.</param>
135
-
/// <returns>A reference to this instance after the append operation has completed.</returns>
0 commit comments