-
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.IOhelp 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
- Implement in System.Private.CoreLib in corert (if BinaryWriter isn't yet in "shared")
- Expose from System.IO contract in corefx
- Add tests to System.IO tests in corefx
namespace System.IO
{
public class BinaryWriter
{
public virtual void Write(ReadOnlySpan<byte> value);
public virtual void Write(ReadOnlySpan<char> value);
…
}
}
jnm2 and gusarov
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.IOhelp wanted[up-for-grabs] Good issue for external contributors[up-for-grabs] Good issue for external contributorstenet-performancePerformance related issuePerformance related issue