-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Closed
Closed
Copy link
Labels
Area-IDEFeature RequestResolution-FixedThe bug has been fixed and/or the requested behavior has been implementedThe bug has been fixed and/or the requested behavior has been implemented
Milestone
Description
For example, when pull members up to base class is used, and the base class is in a separate document without a suitable using statement, the following happens:
interface Interface
{
public System.Threading.Tasks.Task PulledUp(System.Guid guid);
}Instead I think it would be best if pull members up tried to preserve the names as they appeared in the original document. This means that it should add using statements if doing so will not cause conflicts.
Thus it should result in:
using System;
using System.Threading.Tasks;
interface Interface
{
public Task PulledUp(Guid guid);
}Similiar applies to Implement members, generate variable, etc.
canton7, mpawelski and jnm2jnm2
Metadata
Metadata
Assignees
Labels
Area-IDEFeature RequestResolution-FixedThe bug has been fixed and/or the requested behavior has been implementedThe bug has been fixed and/or the requested behavior has been implemented
Type
Projects
Status
Complete