fix(c#): remove field keywork

This commit is contained in:
Marcello 2022-11-08 17:43:20 +01:00
parent afa2321103
commit a0dc9f51a3

View file

@ -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