Navigation:  StyleCop 4.3 > StyleCop 4.3 Rules > Readability Rules >

SA1111: ClosingParenthesisMustBeOnLineOfLastParameter

Previous pageReturn to chapter overviewNext page
StyleCop 4.3

Send comments on this topic.

SA1111: ClosingParenthesisMustBeOnLineOfLastParameter
Glossary Item Box
TypeName

ClosingParenthesisMustBeOnLineOfLastParameter

CheckId

SA1111

Category

Readability Rules

 

Cause

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.

Rule Description

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]; }

   }

 

How to Fix Violations

To fix a violation of this rule, ensure that the closing bracket is placed on the same line as the last parameter.

 


© Microsoft Corporation. All Rights Reserved.