Skip to content
ptittof57 edited this page Aug 15, 2015 · 5 revisions
<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

Cause

TODO.

Rule Description

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]

How to Fix Violations

Remove the unnecessary parenthesis.

How to Suppress Violations

[SuppressMessage("StyleCop.CSharp.MaintainabilityRules", "SA1411:AttributeConstructorMustNotUseUnnecessaryParenthesis", Justification = "Reviewed.")]
Clone this wiki locally