You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Name methods using a verb or a verb-object pair (AV1720) Name methods using a verb like Show or a verb-object pair such as ShowDialog. A good name should give a hint on the what of a member, and if possible, the why. Also, don't include And in the name of a method. It implies that the method is doing more than one thing, which violates the single responsibility principle explained in AV1115.
New language features to consider:
local functions
I think this rule applies to local functions as well.
Proposal:
Replace "methods" with "methods and/or local functions" (in title and text)
Convert the text-reference to AV1115 into a hyperlink
The text was updated successfully, but these errors were encountered:
Existing rule:
Name methods using a verb or a verb-object pair (AV1720)
Name methods using a verb like Show or a verb-object pair such as ShowDialog. A good name should give a hint on the what of a member, and if possible, the why.
Also, don't include And in the name of a method. It implies that the method is doing more than one thing, which violates the single responsibility principle explained in AV1115.
New language features to consider:
I think this rule applies to local functions as well.
Proposal:
The text was updated successfully, but these errors were encountered: