servicepoint/crates/servicepoint_binding_cs/ServicePoint/ByteSlice.cs

7 lines
140 B
C#
Raw Normal View History

2024-10-19 14:45:21 +02:00
namespace ServicePoint;
public partial struct SPByteSlice
{
public unsafe Span<byte> AsSpan() => new Span<byte>(start, (int)length);
}