[301] Extract Method
Given something like:
public bool WillDoSomething(out string failureReason)
{
Thing thing = GetThing();
//Select from here....
failureReason = null;
// do stuff with thing and failureReason.
//Select to here....
}
Extract method ignores the out parameter in the extracted method. Is this
what I should expect?
Please sign in to leave a comment.
Hello,
We appreciate your feedback.
The corresponding JIRA request has been created, and you are welcome to monitor
its status at http://www.jetbrains.net/jira/browse/RSRP-31694.
Best regards,
- Development Team.