RL0960 - Ensures method names have the proper whitespace before opening parenthesis

Source code cannot have whitespace between a method name and the opening parenthesis.

Accepted

MethodCall(argument1);

Rejected

MethodCall (argument1);
MethodCall
(argument1);

Exceptions

  • Extra blank lines appearing within the Visual Studio designer source generated areas will lbe ignored.