-
Notifications
You must be signed in to change notification settings - Fork 23
SA1111
ptittof57 edited this page Aug 15, 2015
·
5 revisions
<title>SA1111: ClosingParenthesisMustBeOnLineOfLastParameter</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 |
ClosingParenthesisMustBeOnLineOfLastParameter |
CheckId |
SA1111 |
Category |
Readability Rules |
The closing parenthesis or bracket in a call to a C# method or indexer, or the declaration of a method or indexer, is not placed on the same line as the last parameter.
A violation of this rule occurs when the closing bracket of a method or indexer call or declaration is not placed on the same line as the last parameter. The following examples show correct placement of the bracket:
public string JoinName(string first, string last)
{
string name = JoinStrings(
first,
last);
}
public int this[int x]
{
get { return this.items[x]; }
}
To fix a violation of this rule, ensure that the closing bracket is placed on the same line as the last parameter.
[SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1111:ClosingParenthesisMustBeOnLineOfLastParameter", Justification = "Reviewed.")]
</div>
</body>
- - SA0102 - Clean Install
- - Download
- - Documentation Rules - Layout Rules - Maintainability Rules - Naming Rules - Ordering Rules - Readability Rules - Spacing Rules - Suppressions
- - Adding a custom StyleCop settings page - Adding custom rule settings - Authoring a custom styleCop rule - Authoring rules metadata - Custom CSharp Language Service - Custom MSBuild Integration - Hosting StyleCop in a Custom Environment - Installing a Custom Rule - Integrating StyleCop Into Build Environments - Integrating StyleCop into MSBuild - Writing Custom Rules for StyleCop