ILspy is a amazing tool, but when I use it decompile dll, I have result like this:
this.lastOrientation = base.get_Orientation();
but what it should be is like this:
this.lastOrientation = base.Orientation;
how can I get the better result?
more examples like this:
It shall be:
battery_logo.Visibility = System.Windows.Visibility.Visible;
but what we get is:
battery_logo.set_Visibility(System.Windows.Visibility.Visible);
When we build will get error like:
'System.Windows.UIElement.Visibility.set': cannot explicitly call operator or accessor