| TypeName | SA1110OpeningParenthesisMustBeOnDeclarationLine |
| CheckId | SA1110 |
| Category | Readability Rules |
The opening 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 method or indexer name.
A violation of this rule occurs when the opening bracket of a method or indexer call or declaration is not placed on the same line as the method or indexer. The following examples show correct placement of the opening bracket:
This rule also applies to constructor invocations and object creation expressions, including target-typed new expressions
introduced in C# 9. In all of these cases, the ( should appear on the same line as the new keyword.
public string JoinName(string first, string last)
{
return JoinStrings(
first, last);
}
public int this[int x]
{
get { return this.items[x]; }
}To fix a violation of this rule, ensure that the opening bracket is placed on the same line as the name of the method or indexer.
[SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1110:OpeningParenthesisMustBeOnDeclarationLine", Justification = "Reviewed.")]#pragma warning disable SA1110 // OpeningParenthesisMustBeOnDeclarationLine
#pragma warning restore SA1110 // OpeningParenthesisMustBeOnDeclarationLine