(WriteContext context, in bool value, bool hasGenerics)
| 30 | public override bool DefaultValue => false; |
| 31 | |
| 32 | public override void WriteData(WriteContext context, in bool value, bool hasGenerics) |
| 33 | { |
| 34 | _ = hasGenerics; |
| 35 | context.Writer.WriteUInt8(value ? (byte)1 : (byte)0); |
| 36 | } |
| 37 | |
| 38 | public override bool ReadData(ReadContext context) |
| 39 | { |
nothing calls this directly
no test coverage detected