This rule is Obsolete | |
Synopsis: | Always write the left parentheses directly after a method/function name |
Language: | C# |
Severity Level: | 9 |
Category: | Coding style |
Description: |
This gives a uniform appearance to the code. public bool HasImages(); // Correct ! public bool HasImages (); // Incorrect ! bool studyHasImages = savedStudy.HasImages(); // Correct ! bool studyHasImages = savedStudy.HasImages (); // Incorrect ! |