(WriteContext context, in byte value, bool hasGenerics)
| 115 | public override byte DefaultValue => 0; |
| 116 | |
| 117 | public override void WriteData(WriteContext context, in byte value, bool hasGenerics) |
| 118 | { |
| 119 | _ = hasGenerics; |
| 120 | context.Writer.WriteUInt8(value); |
| 121 | } |
| 122 | |
| 123 | public override byte ReadData(ReadContext context) |
| 124 | { |
nothing calls this directly
no test coverage detected