Closed CesGan closed 1 year ago
This is by design, partial methods with no accessibility modifier are effectively private. These can't be made protected because that would force you to always implement them, otherwise the code would not compile. If you absolutely need derived class to be able to inject logic, you can add a protected virtual
method for that, and call it from those two private methods.
Describe the bug
Methods OnChanged and OnChanging are not accessible on inherited classes.
Expected behavior
Methods should be available.
IDE and version
VS 2022
Nuget packages
Nuget package version(s)
8.1.0
Help us help you
No, just wanted to report this