(WriteContext context, in int value, bool hasGenerics)
| 81 | public override int DefaultValue => 0; |
| 82 | |
| 83 | public override void WriteData(WriteContext context, in int value, bool hasGenerics) |
| 84 | { |
| 85 | _ = hasGenerics; |
| 86 | context.Writer.WriteVarInt32(value); |
| 87 | } |
| 88 | |
| 89 | public override int ReadData(ReadContext context) |
| 90 | { |
nothing calls this directly
no test coverage detected