This issue has been created from an NNTP article.
Hi Ilya
Given:
private string _foo;
public string Foo
{
get { return _foo; }
}
Hit rename on Foo (line 2), change to FooBar, click next to 'Rename Related Symbols' which offers to rename '_foo' to '_FooBar'. (By the way, it would be great to be able to F2 at this point an go straight into editing the new related symbol name.) This leaves:
private string _FooBar;
public string FooBar
{
get { return _FooBar; }
}
Then if I rename on '_FooBar' the dialog offers the (correct) name of '_fooBar'.
Cheers
Sean