diff --git a/docs/dotnet/C#/C#.md b/docs/dotnet/C#/C#.md index 66758fa..12ca4ac 100644 --- a/docs/dotnet/C#/C#.md +++ b/docs/dotnet/C#/C#.md @@ -1438,10 +1438,7 @@ class Class set => _backingField = value; } - // access backing field with the field keyword [C# 11?] - public Type Property { get => field; set => field = value; } - - // required property [C# 11?], prop must be set at obj init (in constructor or initializer) + // REQUIRED PROPERTY prop must be set at obj init (in constructor or initializer) public required Type Property { get; set; } // EXPRESSION-BODIED READ-ONLY PROPERTY