()
| 502 | } |
| 503 | |
| 504 | public ushort ReadUInt16() |
| 505 | { |
| 506 | CheckBound(2); |
| 507 | ushort value = BinaryPrimitives.ReadUInt16LittleEndian(_storage.AsSpan(_cursor, 2)); |
| 508 | _cursor += 2; |
| 509 | return value; |
| 510 | } |
| 511 | |
| 512 | public short ReadInt16() |
| 513 | { |
no outgoing calls