This option controls whether auto-implemented properties should be preferred over properties with trivial get/set accessors backed by a private field.
public int Prop { get; set; }private int _prop;
public int Prop {
get { return _prop; }
set { _prop = value; }
}