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
@ironfede A question on TFMs in the core library (similar to #123) -
As it stands, the core library targets .NET Framework 4,0 and .NET Standard 2.0, neither of which has the Span types built in.
There is the System.Memory NuGet package which adds the types, but that only supports .NET Framework 4.5+, not 4.0.
So - I think that in order to support this, either the core library needs to target newer TFMs, or new functions would need to be conditionally compiled.
Also, I think it would be useful to add a target for .NET 6.0 or .NET Standard 2.1 such that users of those get the built in span types without having to reference the extra NuGet packages.
Any preferences in case I get time to look at this properly?
Hi, CFStream would profit very much if it would support
Span
. this would let to avoid unnecessary serializing of (some) objects tobyte[]
array.I suggest adding following methods to CFStream:
Best!
The text was updated successfully, but these errors were encountered: