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.
1 parent 6fbb556 commit 245a99aCopy full SHA for 245a99a
src/Tests/PolyfillTests_StringBuilder.cs
@@ -77,7 +77,7 @@ public void AppendJoin()
77
{
78
var builder = new StringBuilder();
79
80
- ReadOnlySpan<string?> span = ["value1", "value2"];
+ string?[] span = ["value1", "value2"];
81
builder.AppendJoin(",", span);
82
Assert();
83
builder.AppendJoin(",", new object[]{"value1", "value2"});
0 commit comments