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
Resolved CS0121 overload ambiguity when passing a no-hole interpolated string (e.g. Append($"text")) to Append/AppendLine on C# 13 and earlier, by adding Append(string?) and AppendLine(string?) overloads. Reported by @SMAH1 in #283
This commit was created on GitHub.com and signed with GitHub’s verified signature.
This is the v3 major release. The API is almost the same as in v2 - there is only a slight change in the Concat static helper method to reflect a less-boxed API.
Added
.NET 10.0 support
IndexOf, LastIndexOf, and Contains methods now support StringComparison
Changed
ValueStringBuilder.Concat uses params ReadOnlySpan<T> to reduce boxing and improve performance.