Skip to content

Commit d79c78f

Browse files
committed
Update /docs/getting-started/v3/custom-serialization for v3 3.0.1
1 parent a66c6db commit d79c78f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

site/docs/getting-started/v3/custom-serialization.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ System types:
4040
* `System.DateOnly`
4141
* `System.DateTime`
4242
* `System.DateTimeOffset`
43-
* `System.Guid`
44-
* `System.Index`
43+
* `System.Guid` _(starting with v3 1.0.0 or later)_
44+
* `System.Index` _(starting with v3 1.0.0 or later)_
4545
* `System.Numerics.BigInteger`
46-
* `System.Range`
46+
* `System.Range` _(starting with v3 1.0.0 or later)_
4747
* `System.TimeOnly`
4848
* `System.TimeSpan`
4949
* `System.Type`
@@ -55,6 +55,7 @@ Additional supported values:
5555
* Arrays of serializable values
5656
* Enum values
5757
* Values which implement both [`IFormattable`](https://learn.microsoft.com/dotnet/api/system.iformattable) and [`IParsable<TSelf>`](https://learn.microsoft.com/dotnet/api/system.iparsable-1) _(starting with v3 1.1.0 or later)_.
58+
* Tuples, typed via `Tuple<>` or `ValueTuple<>`, as well as untyped _(starting with v3 3.0.1 or later)_.
5859
* `null` values
5960

6061
In order to support developers wanting to be able to run individual theory data rows, we also added the ability to provide your own custom serialization for your own custom data types.

0 commit comments

Comments
 (0)