> Can it to be added to strongly formatting rules (option -
> always obey)?
>
> /*
> public int SampleProperty
> {
> get {return _sampleProperty;}
>
> set
> {
> > _sampleProperty = value;
> }
> }
>
> public int SampleProperty
> {
> get
> {
> > return _sampleProperty;
> }
>
> set {_sampleProperty = value;}
> }
>
> public int SampleProperty
> {
> get {return _sampleProperty;}
> set {_sampleProperty = value;}
> }
> */