TypeName | SA1106CodeMustNotContainEmptyStatements |
CheckId | SA1106 |
Category | Readability Rules |
The C# code contains an extra semicolon.
A violation of this rule occurs when the code contain an extra semicolon. Syntactically, this results in an extra, empty statement in the code.
To fix a violation of this rule, remove the unneeded semicolon.
[SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1106:CodeMustNotContainEmptyStatements", Justification = "Reviewed.")]
#pragma warning disable SA1106 // CodeMustNotContainEmptyStatements
#pragma warning restore SA1106 // CodeMustNotContainEmptyStatements