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
/// <summary>Concatenates the strings of the provided array, using the specified separator between each string, then appends the result to the current instance of the string builder.</summary>
15
-
/// <param name="separator">The string to use as a separator. separator is included in the joined strings only if values has more than one element.</param>
16
-
/// <param name="values">An array that contains the strings to concatenate and append to the current instance of the string builder.</param>
17
-
/// <returns>A reference to this instance after the append operation has completed.</returns>
@@ -23,9 +36,6 @@ public static StringBuilder AppendJoin(
23
36
target.Append(string.Join(separator,values));
24
37
25
38
/// <summary>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 the current instance of the string builder.</summary>
26
-
/// <param name="separator">The string to use as a separator. separator is included in the joined strings only if values has more than one element.</param>
27
-
/// <param name="values">An array that contains the strings to concatenate and append to the current instance of the string builder.</param>
28
-
/// <returns>A reference to this instance after the append operation has completed.</returns>
@@ -34,9 +44,6 @@ public static StringBuilder AppendJoin(
34
44
target.Append(string.Join(separator,values));
35
45
36
46
/// <summary>Concatenates the strings of the provided array, using the specified char separator between each string, then appends the result to the current instance of the string builder.</summary>
37
-
/// <param name="separator">The character to use as a separator. separator is included in the joined strings only if values has more than one element.</param>
38
-
/// <param name="values">An array that contains the strings to concatenate and append to the current instance of the string builder.</param>
39
-
/// <returns>A reference to this instance after the append operation has completed.</returns>
/// <summary>Concatenates the string representations of the elements in the provided array of objects, using the specified char separator between each member, then appends the result to the current instance of the string builder.</summary>
48
-
/// <param name="separator">The character to use as a separator. separator is included in the joined strings only if values has more than one element.</param>
49
-
/// <param name="values">An array that contains the strings to concatenate and append to the current instance of the string builder.</param>
50
-
/// <returns>A reference to this instance after the append operation has completed.</returns>
/// <summary>Concatenates and appends the members of a collection, using the specified char separator between each member.</summary>
59
-
/// <param name="separator">The character to use as a separator. separator is included in the joined strings only if values has more than one element.</param>
60
-
/// <param name="values">A collection that contains the objects to concatenate and append to the current instance of the string builder.</param>
61
-
/// <returns>A reference to this instance after the append operation has completed.</returns>
/// <summary>Concatenates and appends the members of a collection, using the specified char separator between each member.</summary>
70
-
/// <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>
71
-
/// <param name="values">A collection that contains the objects to concatenate and append to the current instance of the string builder.</param>
72
-
/// <returns>A reference to this instance after the append operation has completed.</returns>
0 commit comments