(WriteContext context, in sbyte value, bool hasGenerics)
| 47 | public override sbyte DefaultValue => 0; |
| 48 | |
| 49 | public override void WriteData(WriteContext context, in sbyte value, bool hasGenerics) |
| 50 | { |
| 51 | _ = hasGenerics; |
| 52 | context.Writer.WriteInt8(value); |
| 53 | } |
| 54 | |
| 55 | public override sbyte ReadData(ReadContext context) |
| 56 | { |