We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents baed971 + a879d70 commit dbd4851Copy full SHA for dbd4851
dist/index.ts
@@ -241,7 +241,7 @@ export class String {
241
break;
242
}
243
244
-
+
245
return temp;
246
247
@@ -258,9 +258,15 @@ export class StringBuilder {
258
public Append(value: string) {
259
this.Values.push(value);
260
261
+ public AppendLine(value: string) {
262
+ this.Values.push('\n' + value);
263
+ }
264
public AppendFormat(format: string, ...args: any[]) {
265
this.Values.push(String.Format(format, ...args));
266
267
+ public AppendLineFormat(format: string, ...args: any[]) {
268
+ this.Values.push('\n' + String.Format(format, ...args));
269
270
public Clear() {
271
this.Values = [];
272
0 commit comments