Send comments on this topic. |
|
Cause
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
© Microsoft Corporation. All Rights Reserved.