StyleCop / StyleCop.ReSharper

Official ReSharper extension for StyleCop

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mistake in the file layout.

Ramirag opened this issue · comments

commented

This is the result of code clean up for the file layout's extension.

public class TestResharperLayout
{
    public const int PublicConst = 5;

    public readonly int PublicReadOnlyField;

    public int PublicField;

    private const int PrivateConst = 5;

    private readonly int privateReadOnlyField;

    private int privateField;
}

There is an error

SA1202 : CSharp.Ordering : All private fields must be placed after all public fields.

for private const int PrivateConst = 5; It has to be after public int PublicField;