mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-19 02:20:12 +01:00
7 lines
140 B
C#
7 lines
140 B
C#
namespace ServicePoint;
|
|
|
|
public partial struct SPByteSlice
|
|
{
|
|
public unsafe Span<byte> AsSpan() => new Span<byte>(start, (int)length);
|
|
}
|