Visual Studio: Is there a "move class to different namespace" refactoring?

Visual Studio 2010 has the possibility to rename a namespace. Place the cursor over the namespace name and press F2. Or simply rename it in the code and press Shift+Alt+F10, Enter after seeing the red squiggle appear.

Reharper can also rename namespaces. Quote:

The Rename Namespace refactoring allows users to rename a specific namespace and automatically correct all references to the namespace in the code. The following usages are renamed:

  • Namespace statements
  • Using directives
  • Qualified names of types

Visual Studio 2019 provides at least 2 built-in options:

'Move to namespace...' refactoring can be triggered on any class, and VS will prompt for the target namespace.

'Change namespace to...' refactoring is provided for when the current file namespace doesn't match with the folder structure.

This can be used to move individual classes to a different namespace by:

  1. creating the desired folder structure
  2. moving the file
  3. applying the mentioned refactoring (CTRL+. with the cursor over the namespace)

These operation ensures that all references are updated accordingly.