mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 18:36:41 +00:00
Mark postponed C# features
This commit is contained in:
parent
0fd87958af
commit
7bc6bc6e97
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue