0

I am following guidelines given at This location, this link mentioned that "Move to Another File" option will be displayed, but I did not see it. I am using latest version as -

JetBrains ReSharper 8.2.2 Full Edition Build 8.2.2000.5102

with visual studio - Visual Studio 10.0.40219.1.

Is there any issue with this feature?

Omkar
  • 2,129
  • 8
  • 33
  • 59

1 Answers1

0

This is not a issue. This happen when the type which we are moving is/are deeply nested within class e.g.

namespace MyNamespace
{
     class A
     {

         enum B
         {
         }
     }
}

. So first, re-factor the code to move that type(enum B) to outer name space(MyNamespace) and then again re-factor it to move required file, you will see menu here. :) :)

Omkar
  • 2,129
  • 8
  • 33
  • 59