(WriteContext context, in ushort value, bool hasGenerics)
| 132 | public override ushort DefaultValue => 0; |
| 133 | |
| 134 | public override void WriteData(WriteContext context, in ushort value, bool hasGenerics) |
| 135 | { |
| 136 | _ = hasGenerics; |
| 137 | context.Writer.WriteUInt16(value); |
| 138 | } |
| 139 | |
| 140 | public override ushort ReadData(ReadContext context) |
| 141 | { |
nothing calls this directly
no test coverage detected