Visual Studio 字段分配排序扩展

Visual Studio Extension for sorting field assignments

当各种对象中有许多字段时,确保正确分配所有字段有时是一项艰巨的任务,尤其是在必须维护其他人的代码或只是进行项目清理时。是否有 visual studio 的工具或扩展程序可用于按对象字段名称的字母顺序对字段分配进行排序,如下所示:

来自

ObjectName obj = new ObjectName
{
    SecondField = anotherObject.SecondField,
    ThirdField  = anotherObject.ThirdField,
    FirstField  = anotherObject.FirstField
};

ObjectName obj = new ObjectName
{
    FirstField  = anotherObject.FirstField,
    SecondField = anotherObject.SecondField,
    ThirdField  = anotherObject.ThirdField
};

我通常使用简单的 Ctrl+Space 来避免这个问题要分配的字段列表,然后我按排序方式分配所有内容。

Is there a tool or extension for visual studio that can be used to sort fields assignments alphabetically by the object's field names

您可以尝试使用 Visual Studio 扩展 CodeMaid 对对象的字段名称进行排序:

更多详情,请访问:http://www.codemaid.net

希望对您有所帮助。