Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve SEO on STJ article #36890

Merged
merged 4 commits into from
Aug 31, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/standard/datetime/how-to-use-dateonly-timeonly.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
title: How to use DateOnly and TimeOnly
description: Learn about the DateOnly and TimeOnly structures in .NET.
ms.date: 01/11/2023
dev_langs:
dev_langs:
- "csharp"
- "vb"
helpviewer_keywords:
helpviewer_keywords:
- "DateOnly structure"
- "TimeOnly structure"
- "date and time classes [.NET]"
Expand Down Expand Up @@ -129,7 +129,7 @@ Because `TimeOnly` only represents a 24-hour period, it rolls over forwards or b

[!INCLUDE [dateonly-and-timeonly-serialization](includes/dateonly-and-timeonly-serialization.md)]

For more information, see [How to serialize and deserialize (marshal and unmarshal) JSON in .NET](../serialization/system-text-json/how-to.md#how-to-serialize-and-deserialize-marshal-and-unmarshal-json-in-net).
For more information, see [How to serialize and deserialize JSON in .NET](../serialization/system-text-json/how-to.md).

### Work with TimeSpan and DateTime

Expand Down
4 changes: 2 additions & 2 deletions docs/standard/serialization/system-text-json/how-to.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "How to serialize and deserialize JSON using C# - .NET"
title: "How to serialize and deserialize JSON in .NET"
gewarren marked this conversation as resolved.
Show resolved Hide resolved
description: "Learn how to use the System.Text.Json namespace to serialize to and deserialize from JSON in .NET. Includes sample code."
ms.date: 01/04/2023
ms.custom: contperf-fy21q2
Expand All @@ -17,7 +17,7 @@ ms.topic: how-to
adobe-target: true
---

# How to serialize and deserialize (marshal and unmarshal) JSON in .NET
# How to serialize and deserialize JSON in .NET

This article shows how to use the <xref:System.Text.Json?displayProperty=fullName> namespace to serialize to and deserialize from JavaScript Object Notation (JSON). If you're porting existing code from `Newtonsoft.Json`, see [How to migrate to `System.Text.Json`](migrate-from-newtonsoft.md).

Expand Down
Loading