(WriteContext context, in List<DateOnly> value, bool hasGenerics)
| 167 | public override List<DateOnly> DefaultValue => null!; |
| 168 | |
| 169 | public override void WriteData(WriteContext context, in List<DateOnly> value, bool hasGenerics) |
| 170 | { |
| 171 | List<DateOnly> list = value ?? []; |
| 172 | PrimitiveCollectionHeader.WriteListHeader(context, list.Count, hasGenerics, TypeId.Date, false); |
| 173 | for (int i = 0; i < list.Count; i++) |
| 174 | { |
| 175 | TimeCodec.WriteDate(context, list[i]); |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | public override List<DateOnly> ReadData(ReadContext context) |
| 180 | { |
nothing calls this directly
no test coverage detected