Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 934 Bytes

SA1107.md

File metadata and controls

39 lines (29 loc) · 934 Bytes

SA1107

TypeName SA1107CodeMustNotContainMultipleStatementsOnOneLine
CheckId SA1107
Category Readability Rules

Cause

The C# code contains more than one statement on a single line.

Rule description

A violation of this rule occurs when the code contain more than one statement on the same line. Each statement should begin on a new line.

How to fix violations

To fix a violation of this rule, move each statement to begin on its own line.

How to suppress violations

[SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1107:CodeMustNotContainMultipleStatementsOnOneLine", Justification = "Reviewed.")]
#pragma warning disable SA1107 // CodeMustNotContainMultipleStatementsOnOneLine
#pragma warning restore SA1107 // CodeMustNotContainMultipleStatementsOnOneLine