From d09ed6558e1eebba8646ed1810116419e60a4826 Mon Sep 17 00:00:00 2001 From: TimShererWithAquent <28902327+TimShererWithAquent@users.noreply.github.com> Date: Fri, 31 Jul 2026 13:17:09 -0700 Subject: [PATCH 1/3] Metadata quality fixes. --- docs/csharp/language-reference/builtin-types/struct.md | 6 ++++-- docs/csharp/whats-new/csharp-12.md | 4 ++-- docs/csharp/whats-new/csharp-13.md | 4 ++-- docs/csharp/whats-new/csharp-15.md | 4 ++-- docs/framework/get-started/index.md | 4 ++-- docs/standard/net-standard.md | 4 ++-- 6 files changed, 14 insertions(+), 12 deletions(-) diff --git a/docs/csharp/language-reference/builtin-types/struct.md b/docs/csharp/language-reference/builtin-types/struct.md index b471e8528976e..0ea86f93c14a6 100644 --- a/docs/csharp/language-reference/builtin-types/struct.md +++ b/docs/csharp/language-reference/builtin-types/struct.md @@ -1,7 +1,9 @@ --- -title: "Structure types" -description: Learn about the struct type in C# +title: Structure Types +description: "Structure types (struct) give C# lightweight, data-centric value types. See how value semantics, copying, and boxing work, and when to choose a class instead." ms.date: 01/14/2026 +author: TimShererWithAquent +ms.author: v-tishe f1_keywords: - "struct_CSharpKeyword" helpviewer_keywords: diff --git a/docs/csharp/whats-new/csharp-12.md b/docs/csharp/whats-new/csharp-12.md index a01001fb7c141..b3072f7057d2e 100644 --- a/docs/csharp/whats-new/csharp-12.md +++ b/docs/csharp/whats-new/csharp-12.md @@ -1,6 +1,6 @@ --- -title: What's new in C# 12 -description: Get an overview of the new features in C# 12. +title: "Whats new in C# 12" +description: "Discover what's new in C# 12, including collection expressions, inline arrays, default lambda parameters, and interceptors. Try examples in your code." ms.date: 03/19/2024 ms.topic: whats-new --- diff --git a/docs/csharp/whats-new/csharp-13.md b/docs/csharp/whats-new/csharp-13.md index fde62a248ee89..dd6e7da2a0dd0 100644 --- a/docs/csharp/whats-new/csharp-13.md +++ b/docs/csharp/whats-new/csharp-13.md @@ -1,6 +1,6 @@ --- -title: What's new in C# 13 -description: Get an overview of the new features in C# 13. +title: "Whats new in C# 13" +description: "Discover what's new in C# 13, including params collections, a new lock object, ref struct interfaces, partial properties, and more. Try examples in your code." ms.date: 11/18/2025 ms.topic: whats-new --- diff --git a/docs/csharp/whats-new/csharp-15.md b/docs/csharp/whats-new/csharp-15.md index 5766f17e59367..9059f7836c39c 100644 --- a/docs/csharp/whats-new/csharp-15.md +++ b/docs/csharp/whats-new/csharp-15.md @@ -1,6 +1,6 @@ --- -title: What's new in C# 15 -description: Get an overview of the new features in C# 15. C# 15 ships with .NET 11. +title: "Whats new in C# 15" +description: "Discover what's new in C# 15, including features such as union types, the closed modifier, extension indexers, and pointer relaxations. Try examples in your code." ms.date: 07/08/2026 ms.topic: whats-new ms.update-cycle: 365-days diff --git a/docs/framework/get-started/index.md b/docs/framework/get-started/index.md index 7e8d7436c6d3e..9552f2e429c1e 100644 --- a/docs/framework/get-started/index.md +++ b/docs/framework/get-started/index.md @@ -1,6 +1,6 @@ --- -title: Get started with .NET Framework -description: Get started with .NET Framework, which is a runtime execution environment that manages apps. It contains a common language runtime (CLR) and an extensive class library. +title: Get Started with .NET Framework +description: Get started with .NET Framework, which is a runtime environment that manages apps. It contains a common language runtime (CLR) and an extensive class library. ms.date: 10/21/2020 helpviewer_keywords: - ".NET Framework, getting started" diff --git a/docs/standard/net-standard.md b/docs/standard/net-standard.md index 682f6098c96a9..a52e7423b4945 100644 --- a/docs/standard/net-standard.md +++ b/docs/standard/net-standard.md @@ -1,6 +1,6 @@ --- -title: .NET Standard -description: Learn about .NET Standard, its versions, and the .NET implementations that support it. +title: Microsoft .NET Standard Overview +description: Learn what .NET Standard is, which implementations support each version, and why .NET 5 and later versions simplify cross-platform code sharing. ms.date: 11/06/2025 ms.service: dotnet ms.subservice: standard-library From aee0cca69d30ba8765a23df22436e5caf3b0cd93 Mon Sep 17 00:00:00 2001 From: TimShererWithAquent <28902327+TimShererWithAquent@users.noreply.github.com> Date: Fri, 31 Jul 2026 13:24:14 -0700 Subject: [PATCH 2/3] Minor fix. --- docs/csharp/language-reference/builtin-types/struct.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/csharp/language-reference/builtin-types/struct.md b/docs/csharp/language-reference/builtin-types/struct.md index 0ea86f93c14a6..b064d47675737 100644 --- a/docs/csharp/language-reference/builtin-types/struct.md +++ b/docs/csharp/language-reference/builtin-types/struct.md @@ -2,8 +2,6 @@ title: Structure Types description: "Structure types (struct) give C# lightweight, data-centric value types. See how value semantics, copying, and boxing work, and when to choose a class instead." ms.date: 01/14/2026 -author: TimShererWithAquent -ms.author: v-tishe f1_keywords: - "struct_CSharpKeyword" helpviewer_keywords: From 3f0ef0d895c75b06f430cfe816420e5538a28d3d Mon Sep 17 00:00:00 2001 From: Tim Sherer <28902327+TimShererWithAquent@users.noreply.github.com> Date: Fri, 31 Jul 2026 13:32:53 -0700 Subject: [PATCH 3/3] Apply suggestions from code review Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- docs/csharp/whats-new/csharp-12.md | 2 +- docs/csharp/whats-new/csharp-13.md | 2 +- docs/csharp/whats-new/csharp-15.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/csharp/whats-new/csharp-12.md b/docs/csharp/whats-new/csharp-12.md index b3072f7057d2e..2d4b0c420e413 100644 --- a/docs/csharp/whats-new/csharp-12.md +++ b/docs/csharp/whats-new/csharp-12.md @@ -1,5 +1,5 @@ --- -title: "Whats new in C# 12" +title: What's new in C# 12 description: "Discover what's new in C# 12, including collection expressions, inline arrays, default lambda parameters, and interceptors. Try examples in your code." ms.date: 03/19/2024 ms.topic: whats-new diff --git a/docs/csharp/whats-new/csharp-13.md b/docs/csharp/whats-new/csharp-13.md index dd6e7da2a0dd0..a20f97a3b31ed 100644 --- a/docs/csharp/whats-new/csharp-13.md +++ b/docs/csharp/whats-new/csharp-13.md @@ -1,5 +1,5 @@ --- -title: "Whats new in C# 13" +title: What's new in C# 13 description: "Discover what's new in C# 13, including params collections, a new lock object, ref struct interfaces, partial properties, and more. Try examples in your code." ms.date: 11/18/2025 ms.topic: whats-new diff --git a/docs/csharp/whats-new/csharp-15.md b/docs/csharp/whats-new/csharp-15.md index 9059f7836c39c..f9f1554bfc6d1 100644 --- a/docs/csharp/whats-new/csharp-15.md +++ b/docs/csharp/whats-new/csharp-15.md @@ -1,5 +1,5 @@ --- -title: "Whats new in C# 15" +title: What's new in C# 15 description: "Discover what's new in C# 15, including features such as union types, the closed modifier, extension indexers, and pointer relaxations. Try examples in your code." ms.date: 07/08/2026 ms.topic: whats-new