6 ms·
These days C# has Span<byte> ¹) and ReadOnlySpan<byte> ²) which has a whole bunch of string-like methods, but the version of C# it requires might be newer than
by rednab 4y ago
These days C# has Span<byte> ¹) and ReadOnlySpan<byte> ²) which has a whole bunch of string-like methods, but the version of C# it requires might be newer than you're happy with.
¹) https://docs.microsoft.com/en-us/dotnet/api/system.span-1 https://docs.microsoft.com/en-us/dotnet/api/system.span-1
²) https://docs.microsoft.com/en-us/dotnet/api/system.readonlyspan-1 https://docs.microsoft.com/en-us/dotnet/api/system.readonlys...
- gwbas1c 4y ago> but the version of C# it requires might be newer than you're happy with Oh, that's a solvable problem. Thanks!