ReSharper 2018.3 Help

Convert Indexer to Method refactoring

ReSharper | Refactor | Convert | Indexer to Method…
ReSharper_Indexer2Function

This refactoring helps you convert one or both accessors of an indexer into methods and update usages of the indexer in the current solution accordingly.

In the example below ReSharper converts both getter and setter accessors of the indexer and updates the usage:

Before refactoring

After refactoring

class BookLibrary { private Book[] books = new Book[1000]; public Book this[int index] { get { if (index >= books.Length) throw new IndexOutOfRangeException("incorrect index"); return books[index]; } set { if (index >= books.Length) throw new IndexOutOfRangeException("incorrect index"); books[index] = value; } } public void TestInsertBookAt(Book book, int index) { this[index] = book; } }

class BookLibrary { private Book[] books = new Book[1000]; public void SetItem(int index, Book value) { if (index >= books.Length) throw new IndexOutOfRangeException("incorrect index"); books[index] = value; } public Book GetItem(int index) { if (index >= books.Length) throw new IndexOutOfRangeException("incorrect index"); return books[index]; } public void TestInsertBookAt(Book book, int index) { SetItem(index, book); } }

To convert an indexer to a method

  1. Place the caret at this keyword of an indexer in the editor or select an indexer in the File Structure window.

  2. Do one of the following:
    • Press Ctrl+Shift+R and then choose Convert Indexer to Method(s)

    • Right-click and choose Refactor | Convert Indexer to Method(s) in the context menu.

    • Choose ReSharper | Refactor | Convert | Indexer to Method… in the main menu.

    The Convert Indexer to Method(s) dialog will open.
  3. Use controls in the dialog to choose which accessors should be converted and to specify names for the created methods.

  4. To apply the refactoring, click Next.

  5. If no conflicts are found, ReSharper performs the refactoring immediately. Otherwise, it prompts you to resolve conflicts.

Refactorings Convert Indexer to Method

This feature is supported in the following languages and technologies:

Language: C#

Language: VB.NET

Language: C++

Language: HTML

Language: ASP.NET

Language: Razor

Language: JavaScript

Language: TypeScript

Language: CSS

Language: XML

Language: XAML

Language: Resx

Language: Build Scripts

Language: Protobuf

Language: JSON

Feature is available

Feature is available

Feature is not available

Feature is not available

Feature is not available

Feature is not available

Feature is not available

Feature is not available

Feature is not available

Feature is not available

Feature is not available

Feature is not available

Feature is not available

Feature is not available

Feature is not available

The instructions and examples given here address the use of the feature in C#. For details specific to other languages, see corresponding topics in the ReSharper by Language section.

Last modified: 25 April 2019

See Also