Would it make sense to support Span<byte>? #953
-
Hi. As the title indicates, would it make sense to support creation of I'm not familiar with the Magick.NET internals, so I'm not sure how much of a pure wrapper it is. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
It could be possible to add support for span but that would require me to either go from And a third option would be also adding support for |
Beta Was this translation helpful? Give feedback.
It could be possible to add support for span but that would require me to either go from
netstandard20
tonetstandard21
or to add a dependency to be able to useSpan<T>
withnetstandard20
. The latter sounds like a bad plan to me. But I am not sure if I want to switch to2.1
at this point in time. This would break support for .NET Core 2.1.And a third option would be also adding support for
netstandard21
besides supportingnetstandard20
but I really don't want to add another target platform.