SA1411 - Visual-Stylecop/Visual-StyleCop GitHub Wiki
<title>SA1411: AttributeConstructorMustNotUseUnnecessaryParenthesis</title>
<script src="script/helpstudio.js" type="text/javascript"></script>
<script src="script/StandardText.js" type="text/jscript"></script>
<script type="text/jscript">WritePageTop(document.title);</script>
TypeName |
AttributeConstructorMustNotUseUnnecessaryParenthesis |
CheckId |
SA1411 |
Category |
Maintainability Rules |
TODO.
TODO
A violation of this rule occurs when unneccsary parenthesis have been used in an attribute constructor. For example:
[Serializable()]
The parenthesis are unnecessary and should be removed:
[Serializable]
Remove the unnecessary parenthesis.
[SuppressMessage("StyleCop.CSharp.MaintainabilityRules", "SA1411:AttributeConstructorMustNotUseUnnecessaryParenthesis", Justification = "Reviewed.")]