-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Description
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;
Metadata
Metadata
Assignees
Labels
No labels