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
/// Appends the current indent and then the given char to the string being built.
38
57
/// </summary>
@@ -77,6 +96,66 @@ public virtual IndentedStringBuilder Append(IEnumerable<char> value)
77
96
returnthis;
78
97
}
79
98
99
+
/// <summary>
100
+
/// Appends the current indent and then the given strings to the string being built.
101
+
/// </summary>
102
+
/// <typeparam name="T">The type of the members of values.</typeparam>
103
+
/// <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>
104
+
/// <param name="values">A collection that contains the objects to concatenate and append to the current instance of the string builder.</param>
105
+
/// <returns>This builder so that additional calls can be chained.</returns>
/// <summary>Appends the current indent and then the given strings to the string being built.</summary>
130
+
/// <typeparam name="T">The type of the members of values.</typeparam>
131
+
/// <param name="values">A collection that contains the objects to concatenate and append to the current instance of the string builder.</param>
132
+
/// <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>
133
+
/// <param name="condition"></param>
134
+
/// <returns>This builder so that additional calls can be chained.</returns>
/// <summary>Appends the current indent and then the given strings to the string being built.</summary>
146
+
/// <typeparam name="T">The type of the members of values.</typeparam>
147
+
/// <param name="values">A collection that contains the objects to concatenate and append to the current instance of the string builder.</param>
148
+
/// <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>
149
+
/// <param name="condition"></param>
150
+
/// <returns>This builder so that additional calls can be chained.</returns>
0 commit comments