I have a non-nested class WillBeNestedClass
and another class NestBox
.
Now I want to move class WillBeNestedClass
into class NestBox
as a nested class. So WillBeNestedClass
will be nested in class NestBox
.
Is there a refactoring in VS or ReSharper that can do that moving and that automatically updates all references to nested class (from WillBeNestedClass
to NestBox.WillBeNestedClass
)?