SA1204: StaticElementsMustAppearBeforeInstanceElements

StyleCop

TypeName

StaticElementsMustAppearBeforeInstanceElements

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 must 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.