ByteSpanExtensions.GetUInt24 Method
Overloads
| Name | Description |
|---|---|
| GetUInt24(Span<Byte>) | Reads a little-endian UInt24 from a span of bytes. |
| GetUInt24(Span<Byte>, Endian) | Reads a UInt24 from a span of bytes using the specified endianness. |
GetUInt24(Span<Byte>)
Reads a little-endian UInt24 from a span of bytes.
public static UInt24 GetUInt24(this Span<Byte> bytes);
Parameters
| Name | Type | Description |
|---|---|---|
| bytes | Span<Byte> |
Returns
The UInt24 value.
GetUInt24(Span<Byte>, Endian)
Reads a UInt24 from a span of bytes using the specified endianness.
public static UInt24 GetUInt24(this Span<Byte> bytes, Endian endian);
Parameters
| Name | Type | Description |
|---|---|---|
| bytes | Span<Byte> | |
| endian | Endian | The endianness to use. |
Returns
The UInt24 value.