NetUV icon indicating copy to clipboard operation
NetUV copied to clipboard

Support .NET Core 2.1 new memory primitives like Memory<T> and Span<T>

Open oliverw opened this issue 7 years ago • 1 comments

Due to the way NetUV's ReadableBuffer is written, reading the data into a Pipeline requires a temporary copy step. It would be preferable if this could be avoided.

The optimal solution would be of course having NetUV supporting pipelines natively. :)

oliverw avatar Sep 18 '18 12:09 oliverw

@oliverw yep but the catch is that those are net core specific, not net standard 2.0, MSFT is making things available in netstandard 2.1 :)

StormHub avatar Sep 19 '18 04:09 StormHub