分析器提取名称空间

时间:2019-05-12 20:02:31

标签: c# roslyn analyzer codefixprovider

是否存在分析器或代码修补程序,它们将自动提取代码文件中的名称空间。 例如

using System.ComponentModel;
using System.Runtime.Serialization;

namespace Model  
{  
    [System.Runtime.InteropServices.Guid("b70342be-37fc-49ba-aa34-5b60727f8a2e")]
    public class SomeClass
    {}
}

将成为

using System.ComponentModel;
using System.Runtime.Serialization;
using System.Runtime.InteropServices;

namespace Model  
{  
    [Guid("b70342be-37fc-49ba-aa34-5b60727f8a2e")]
    public class SomeClass
    {}
}

0 个答案:

没有答案