是否存在分析器或代码修补程序,它们将自动提取代码文件中的名称空间。 例如
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
{}
}