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
It would let us use memory from anywhere (including other native pointers) and Span<byte>s without copying to a byte[] array. It makes it more in-line with the standard library which often supports both, too.
The text was updated successfully, but these errors were encountered:
Hello. ReadOnlySpan<T> is only supported on .NET Core right now. It is not supported on .NET Standard, which is the target framework the library currently targets when it compiles. I would either have to add .NET Core as an extra target framework and conditionally compile an overload that accepts a ReadOnlySpan<T> as an argument or wait until .NET Standard 2.1 is released, which will support ReadOnlySpan<T>. Let me explore those options and get back to you.
It would let us use memory from anywhere (including other native pointers) and
Span<byte>
s without copying to abyte[]
array. It makes it more in-line with the standard library which often supports both, too.The text was updated successfully, but these errors were encountered: