(WriteContext context, in long value, bool hasGenerics)
| 98 | public override long DefaultValue => 0; |
| 99 | |
| 100 | public override void WriteData(WriteContext context, in long value, bool hasGenerics) |
| 101 | { |
| 102 | _ = hasGenerics; |
| 103 | context.Writer.WriteVarInt64(value); |
| 104 | } |
| 105 | |
| 106 | public override long ReadData(ReadContext context) |
| 107 | { |
nothing calls this directly
no test coverage detected