(WriteContext context, in ulong value, bool hasGenerics)
| 166 | public override ulong DefaultValue => 0; |
| 167 | |
| 168 | public override void WriteData(WriteContext context, in ulong value, bool hasGenerics) |
| 169 | { |
| 170 | _ = hasGenerics; |
| 171 | context.Writer.WriteVarUInt64(value); |
| 172 | } |
| 173 | |
| 174 | public override ulong ReadData(ReadContext context) |
| 175 | { |
nothing calls this directly
no test coverage detected