servicepoint/crates/servicepoint_binding_cs/ServicePoint/ByteSlice.cs
2024-10-19 14:45:21 +02:00

7 lines
140 B
C#

namespace ServicePoint;
public partial struct SPByteSlice
{
public unsafe Span<byte> AsSpan() => new Span<byte>(start, (int)length);
}