Reporter |
|
---|---|
Created | Aug 14, 2017 11:04:14 AM |
Updated | Apr 9, 2018 5:25:45 PM |
Subsystem | Refactorings |
Assignee | Alisa Afonina (alisa.afonina) |
Priority | Major |
State | Fixed In Branch |
Type | Bug |
Fix version | 2017.3 |
Affected versions | 2017.2 |
Fixed In Version ReSharper | Undefined |
VsVersion | All Versions |
Converting this property into a couple of methods:
int currentIndexResults in this:
{
get => cursor.currentIndex;
set => cursor.currentIndex = value;
}
void setCurrentIndex(int value);I.e. the bodies are lost. The refactoring should internally convert to statement body first, if that's what's required.
int getCurrentIndex();