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
Perhaps you've already considered it, but in case you haven't:
The library has many duplicate code paths, one using a Span implementation for higher targets (.NET) and one using arrays for lower targets (.NET Framework and .NET Standard 2.0)
@peterdettman would you be open to this? Happy to get it started. As it's a big job, it can be done in pieces starting in the lower levels of the library.
It's also possible to keep the Index/Range syntax using a polyfill of those types and a reference to System.ValueTuple on net461.
Good idea. Unfortunately this library targets .NET Framework 4.6.1 which is out of support and that library targets 4.6.2, so we would at least still need an explicit reference to System.ValueTuple on net461
Perhaps you've already considered it, but in case you haven't:
The library has many duplicate code paths, one using a Span implementation for higher targets (.NET) and one using arrays for lower targets (.NET Framework and .NET Standard 2.0)
Microsoft provide (and support) the System.Memory package, which allows use of Span etc. on .NET Framework and .NET Standard 2.0. It is fairly common for multi-targeting libraries to reference the package on lower targets. The source code is at https://github.com/dotnet/maintenance-packages/tree/main/src/System.Memory.
This reference would allow many code paths (and public API) to be unified.
Practically, the initial change would look like:
Example unified diff (note Index/Range operators
[..32]
not supported):The text was updated successfully, but these errors were encountered: