Rule "Use a common layout (AV2400)" states:
Always put opening and closing curly braces on a new line.
I'm wondering if an exception should be added for simple properties/events, which would require to use:
public string Value { get; set; } = "default";
instead of:
public string Value
{
get; set;
}
= "default";
Thoughts?
Rule "Use a common layout (AV2400)" states:
I'm wondering if an exception should be added for simple properties/events, which would require to use:
instead of:
Thoughts?