Skip to content

Commit 0f0b91b

Browse files
tdykstraahsonkhan
andauthored
Add link to Migrate-from-Newtonsoft doc (#16678)
* Add link to Migrate-from-Newtonsoft doc * Update docs/core/whats-new/dotnet-core-3-0.md Co-Authored-By: Ahson Khan <[email protected]> * Update docs/core/whats-new/dotnet-core-3-0.md Co-Authored-By: Ahson Khan <[email protected]> Co-authored-by: Ahson Khan <[email protected]>
1 parent a264579 commit 0f0b91b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

docs/core/whats-new/dotnet-core-3-0.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -492,9 +492,13 @@ System.Console.WriteLine($"RuntimeInformation.FrameworkDescription: {System.Runt
492492
493493
### Fast built-in JSON support
494494

495-
.NET users have largely relied on [**Json.NET**](https://www.newtonsoft.com/json) and other popular JSON libraries, which continue to be good choices. **Json.NET** uses .NET strings as its base datatype, which is UTF-16 under the hood.
495+
.NET users have largely relied on [Newtonsoft.Json](https://www.newtonsoft.com/json) and other popular JSON libraries, which continue to be good choices. `Newtonsoft.Json` uses .NET strings as its base datatype, which is UTF-16 under the hood.
496496

497-
The new built-in JSON support is high-performance, low allocation, and based on `Span<byte>`. For more information about the <xref:System.Text.Json> namespace and types, see [JSON serialization in .NET - overview](../../standard/serialization/system-text-json-overview.md). For tutorials on common JSON serialization scenarios, see [How to serialize and deserialize JSON in .NET](../../standard/serialization/system-text-json-how-to.md).
497+
The new built-in JSON support is high-performance, low allocation, and works with UTF-8 encoded JSON text. For more information about the <xref:System.Text.Json> namespace and types, see the following articles:
498+
499+
* [JSON serialization in .NET - overview](../../standard/serialization/system-text-json-overview.md)
500+
* [How to serialize and deserialize JSON in .NET](../../standard/serialization/system-text-json-how-to.md).
501+
* [How to migrate from Newtonsoft.Json to System.Text.Json](../../standard/serialization/system-text-json-migrate-from-newtonsoft-how-to.md)
498502

499503
### HTTP/2 support
500504

0 commit comments

Comments
 (0)