|
Project
|
ReSharper
|
|
Priority
|
Normal |
|
Type
|
Feature |
|
Fix versions
|
Mirabile Futurum |
|
State
|
Open |
|
Assignee
|
Ilya Ryzhenkov |
|
Subsystem
|
Code Cleanup |
|
Affected versions
|
No Affected versions |
|
Fixed in build
|
No Fixed in build
|
> Can it to be added to strongly formatting rules (option -
> always obey)?
>
> /*
> public int SampleProperty
> {
> get {return _sampleProperty;}
>
> set
> {
> // Compound block.
> _sampleProperty = value;
> }
> }
>
> public int SampleProperty
> {
> get
> {
> // Compound block.
> return _sampleProperty;
> }
>
> set {_sampleProperty = value;}
> }
>
> public int SampleProperty
> {
> get {return _sampleProperty;}
> set {_sampleProperty = value;}
> }
> */