Language: C# | Type: CODE_SMELL | Severity: Major
Tags: convention
Putting multiple statements on a single line lowers the code readability and makes debugging the code more complex.
if (someCondition) { DoSomething(); } // Noncompliant
DoSomething(); DoSomethingElse(); // Noncompliant
Write one statement per line to improve readability.
if (someCondition)
{
DoSomething();
}
DoSomething();
DoSomethingElse();
The rule ignores:
Func<object, bool> item1 = o => { return true; }; // Compliant by exception
Func<object, bool> item1 = o => { var r = false; return r; }; // Noncompliant