-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Closed
Labels
api-approvedAPI was approved in API review, it can be implementedAPI was approved in API review, it can be implementedarea-System.Runtimehelp wanted[up-for-grabs] Good issue for external contributors[up-for-grabs] Good issue for external contributorstenet-performancePerformance related issuePerformance related issue
Milestone
Description
Separated out of https://github.com/dotnet/corefx/issues/21281 for tracking purposes.
- Implement in System.Private.CoreLib in coreclr ("shared" with corert)
- Expose from System.Runtime contract in corefx
- Add tests to System.Runtime tests in corefx
namespace System.Text
{
public class StringBuilder
{
public StringBuilder Append(ReadOnlySpan<char> value);
public StringBuilder Insert(int index, ReadOnlySpan<char> value);
public void CopyTo(int sourceIndex, Span<char> destination, int count);
…
}
}
jnm2 and KvanTTT
Metadata
Metadata
Assignees
Labels
api-approvedAPI was approved in API review, it can be implementedAPI was approved in API review, it can be implementedarea-System.Runtimehelp wanted[up-for-grabs] Good issue for external contributors[up-for-grabs] Good issue for external contributorstenet-performancePerformance related issuePerformance related issue