8 references to Append
System.Private.Windows.Core (1)
System\Text\ValueStringBuilder.cs (1)
256
public void AppendFormatted(string? value) =>
Append
(value.AsSpan());
System.Private.Windows.Core.Tests (7)
System\Text\ValueStringBuilderTests.cs (7)
12
builder.
Append
("Hello");
20
builder.
Append
("Hello");
21
builder.
Append
(", ");
22
builder.
Append
("world!");
40
builder.
Append
("Hello world!");
49
builder.
Append
("12345");
57
builder.
Append
("This is a long string that exceeds the initial capacity.");