Send comments on this topic. |
|
Glossary Item Box
Cause
Rule Description
A violation of this rule occurs when a statement that is wrapped in opening and closing curly brackets is written on a single line. For example:
public object Method()
{
lock (this) { return this.value; }
}
When StyleCop checks this code, a violation of this rule will occur because the entire lock statement is written on one line. The statement should be written across multiple lines, with the opening and closing curly brackets each on their own line, as follows:
public object Method()
{
lock (this)
{
return this.value;
}
}
How to Fix Violations
© Microsoft Corporation. All Rights Reserved.