When using the 'Remove not accessed field' quick fix option from the ReSharper context menu, it highlights the affected line.
Is there a keyboard shortcut that will take me to that highlighted line? (As often that line is also redundant and can be removed too)
eg. Given this code:
public class Sample
{
private string unusedField;
public Sample()
{
unusedField = new string('a', 4);
}
}
Using the 'Remove not accessed field' quickfix on the 'unusedField' field, highlights the line in the constructor (seeing as that line is updated). The editing caret stays near the line where the field declaration was.