Change visibility of class members and its descendants
I have question if R# can do something like this:
base class:
public abstract class Base
{
protected abstract void DoSomething();
}
descendant class:
public class Derived: Base
{
protected override void DoSomething();
}
Can i change the visibility of method DoSomething() in class 'Base'
with some R# feature to other visibility(eg. public) and R# will change
visibility also in all descendants of class 'Base' ?
--
Peter Sulek
terrorix@centrum.sk
XanaNews ver. 1.18.1.6
Please sign in to leave a comment.
Hello,
As far as I know there is no such feature. The corresponding JIRA request
has been created, and you are welcome to monitor its status at http://www.jetbrains.net/jira/browse/RSRP-40396.
Best regards,
- Development Team.
+1
Sean Kearon wrote:
If you want this feature than go to
http://www.jetbrains.net/jira/browse/RSRP-40396
and click "Vote for It"
--
Peter Sulek
terrorix@centrum.sk
XanaNews ver. 1.18.1.6
Thanks Peter - have done.