CodeRush Extract class
In coderush I can extract a method based on my code.
开发者_开发技巧Is there a way to extract an entire class?
mycode = 5
turns into
myclass= new myclass;
mycode = mymethod()
myclass
{
methods()
{
return mycode=5
}
}
I don't think, there is such feature currently available in CodeRush
精彩评论