From 2f105cd1362bb81de107fcc7e55527f006d75d8c Mon Sep 17 00:00:00 2001 From: zacharylayne Date: Fri, 10 Jan 2025 06:05:46 -0800 Subject: [PATCH] Update field.md Removed that C# 13 is in preview. --- docs/csharp/language-reference/keywords/field.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/csharp/language-reference/keywords/field.md b/docs/csharp/language-reference/keywords/field.md index 591f3368f1321..7bdc82f83101b 100644 --- a/docs/csharp/language-reference/keywords/field.md +++ b/docs/csharp/language-reference/keywords/field.md @@ -11,7 +11,7 @@ helpviewer_keywords: [!INCLUDE[field-preview](../../includes/field-preview.md)] -The contextual keyword `field`, added as a preview feature in C# 13, can be used in a property accessor to access the compiler synthesized backing field of a property. This syntax enables you to define the body of a `get` or `set` accessor and let the compiler generate the other accessor as it would in an automatically implemented property. +The contextual keyword `field`, added in C# 13, can be used in a property accessor to access the compiler synthesized backing field of a property. This syntax enables you to define the body of a `get` or `set` accessor and let the compiler generate the other accessor as it would in an automatically implemented property. The addition of the `field` contextual keywords provides a smooth path to add benefits such as range checking to an automatically implemented property. This practice is shown in the following example: