标签: c# visual-studio visual-studio-2012 namespaces
我刚刚将10年的代码从VB转换为c#,我正在尝试清理已转换的代码。
有没有办法告诉Visual Studio将现有的类名替换为考虑先前定义的using语句的最短定义?
例如:我想要这一行
System.Data.Common.DbDataAdapter myDbDataAdapter;
转换为
DbDataAdapter myDbDataAdapter;
如果using System.Data.Common;在文件中。
using System.Data.Common;
答案 0 :(得分:1)
http://www.jetbrains.com/resharper/