Priority
Show-stopper
Type
Bug 
State
Fixed 
Assignee
Oleg Stepanov 
Subsystem
No subsystem 
Affected versions
Fixed in
Fixed in build
Next build 
Visible to
All Users 
  • Submitted by   Hofer
    3 years ago (06 Aug 2006 18:22)
  • Updated by Hofer
    3 years ago (09 Sep 2006 13:33)
  • Jira: RSRP-26156
    (history, comments)

RSRP-26156

Extract Suberclass Refactoring

0
    public abstract class A
    {

        public void GetXRange(out double min, out double max)
        {
            min = 0;
            max = 100;
        }

    }  

- Extract Suberclass Refactoring
- Check the GetXRange member and check its 'Make abstract' checkbox
Result:
    public abstract class A : B
    {}

    public abstract class B
    {
        public abstract void GetXRange(out double min, out double max);
    }


Issue was closed
Comments (0)
 
History (0)
 
Linked Issues (0)
 
TeamCity Changes (0)
 
Issue has no comments