servicepoint/crates/servicepoint_binding_cs/ServicePoint/ByteSlice.cs
2024-10-19 16:04:01 +02:00

7 lines
130 B
C#

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