(WriteContext context, in uint value, bool hasGenerics)
| 149 | public override uint DefaultValue => 0; |
| 150 | |
| 151 | public override void WriteData(WriteContext context, in uint value, bool hasGenerics) |
| 152 | { |
| 153 | _ = hasGenerics; |
| 154 | context.Writer.WriteVarUInt32(value); |
| 155 | } |
| 156 | |
| 157 | public override uint ReadData(ReadContext context) |
| 158 | { |
nothing calls this directly
no test coverage detected