ReSharper is good tool, it taught me the auto property in .NET 3.5 today.
// traditional property declaration
public class Foo
{
private string _name;
public string Name
{
get { return _name; }
set [...]