-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove ValueStringBuilder.Concat
?
#237
Comments
Yes exactly - and that is the only reason those functions exist. I wanted to create a small set of helper methods where people can easil just append a few things without mich overhead. Maybe no one uses them :) that might be true. Then we could remove them in a new major version |
If they are being kept, you should replace |
Good point - we could also use |
Hi @linkdotnet, arrays are already implicitly cast to char[] array = new char[4];
ReadOnlySpan<char> span = array; I'm not sure what you're referring to by:
|
Sorry, should have put in the link: dotnet/csharplang#7905 |
Just wondering if this could be removed, since
string.Concat
seems to do pretty much the same thing, except for the fact that it might box value types.The text was updated successfully, but these errors were encountered: