()
| 528 | } |
| 529 | |
| 530 | public ulong ReadUInt64() |
| 531 | { |
| 532 | CheckBound(8); |
| 533 | ulong value = BinaryPrimitives.ReadUInt64LittleEndian(_storage.AsSpan(_cursor, 8)); |
| 534 | _cursor += 8; |
| 535 | return value; |
| 536 | } |
| 537 | |
| 538 | public long ReadInt64() |
| 539 | { |
no outgoing calls