Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 1.11 KB

SA1204.md

File metadata and controls

39 lines (29 loc) · 1.11 KB

SA1204

TypeName SA1204StaticElementsMustAppearBeforeInstanceElements
CheckId SA1204
Category Ordering Rules

Cause

A static element is positioned beneath an instance element of the same type.

Rule description

A violation of this rule occurs when a static element is positioned beneath an instance element of the same type. All static elements should be placed above all instance elements of the same type to make it easier to see the interface exposed from the instance and static version of the class.

How to fix violations

To fix an instance of this violation, place all static elements above all instance elements of the same type.

How to suppress violations

[SuppressMessage("StyleCop.CSharp.OrderingRules", "SA1204:StaticElementsMustAppearBeforeInstanceElements", Justification = "Reviewed.")]
#pragma warning disable SA1204 // StaticElementsMustAppearBeforeInstanceElements
#pragma warning restore SA1204 // StaticElementsMustAppearBeforeInstanceElements