News

Auto-implemented properties let you define a property in a single line of code: public string LastName { get; set; } In C# 6.0, you can also initialize that property to some constant value in the same ...
Devnote / TODO Roslyn-based analyzer to provide diagnostics of static fields and properties initialization and more. Wrong order of static field and property declaration Partial type member reference ...
Property-Scoped Fields (Ported from dotnet/roslyn#850) Discuss this issue at: #8632 Summary Allow fields to be scoped within the accessor body of a property or event declaration. Motivation Properties ...