From 7bc6bc6e970b6404d9b2fd8c02ee3df61d580d34 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Mon, 8 Nov 2021 09:17:32 +0100 Subject: [PATCH] Mark postponed C# features --- DotNet/C#/C#.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DotNet/C#/C#.md b/DotNet/C#/C#.md index ad2aff8..d7c3a9e 100644 --- a/DotNet/C#/C#.md +++ b/DotNet/C#/C#.md @@ -1439,10 +1439,10 @@ class Class set => _backingField = value; } - // access backing field with the field keyword [C# 10] + // access backing field with the field keyword [C# 11?] public Type Property { get => field; set => field = value; } - // required property [C# 10], prop myst be set at obj init (in constructor or initializer) + // required property [C# 11?], prop must be set at obj init (in constructor or initializer) public required Type Property { get; set; } // EXPRESSION-BODIED READ-ONLY PROPERTY