Skip to main content
A newer version of this page is available. .

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

Currently, 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.
NOTE

The blinking cursor shows the caret's position where Refactoring is available.

public class UsedClass
{
    private class  UnusedClass
    {

    }
}
  1. Use the Ctrl + . or Ctrl + ~ shortcut to invoke the Code Actions Menu.

OrganizeMembersPage

  1. Select Remove Unused Type from the menu.

After execution, the Refactoring removes the unused type.

public class UsedClass
{

}