79612159

Date: 2025-05-08 10:24:58
Score: 0.5
Natty:
Report link

In C# 13 they are implementing a field keyword, so you will be able to write code like this:

public int MyProperty 
{
    get;
    set
    {
        field = value;
        functionDependingOnSetter(value);
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user1996726