Reflector shows this for auto properties:
public string AddressLine1
{
[CompilerGenerated]
get
{
return this.<AddressLine1>k__BackingField;
}
[CompilerGenerated]
set
{
this.<AddressLine1>k__BackingField = value;
}
}
Is there any add-in or other tool that will convert it to:
public string AddressLine1 { get; set; }
I don't believe that any of these add-ins support the above: http://www.codeplex.com/reflectoraddins
buy would be happy if you proved me wrong.