-
Notifications
You must be signed in to change notification settings - Fork 731
Closed
Labels
Description
C# 7.2 added support for the new access modifier private protected.
This is used for the following public methods:
HaveAccessModifierNotHaveAccessModifierWhichSetterHasWhichSetterDoesNotHaveWhichGetterHasWhichGetterDoesNotHaveBeWritableBeReadable
It would be nice to have support for private protected.
This should be accomplishable by:
- Adding another enum to CSharpAccessModifier.cs,
- add a check for
IsFamilyAndAssemblyfor the methods in
CSharpAccessModifierExtensions.cs, and - write some tests