Skip to main content

Remove Unused Type

Purpose

Removes types that are never executed or referenced.

You can use this refactoring to ensure the type you want to delete is not referenced in your code.

Note

This refactoring cannot be applied to public types.

Availability

Available when the cursor is in a type declaration. This type is never used in code.

How to Use

  1. Place the caret in an unused type declaration.

    public class UsedClass
    {
        private class UnusedClass
        {
    
        }
    }
    
  2. Press the Ctrl + . or Ctrl + ~ shortcut to invoke the Code Actions menu.

    OrganizeMembersPage

  3. Select Remove Unused Type from the menu.

After execution, the Refactoring removes the unused type.

public class UsedClass
{

}