When using the “Delete unavailable field” quick delete option in the ReSharper context menu, it selects the affected row.
Is there a keyboard shortcut that will lead me to this highlighted line? (How often this line is also redundant and can be deleted)
eg. Given this code:
public class Sample { private string unusedField; public Sample() { unusedField = new string('a', 4); } }
Using the quick deletion of "Undeletable field" in the "unusedField" field, a line is highlighted in the constructor (seeing that this line is updated). The editing template remains next to the line in which the field was declared.

source share