csharpier icon indicating copy to clipboard operation
csharpier copied to clipboard

Generic List Initializer breaks poorly

Open belav opened this issue 3 years ago • 0 comments

This is currently how it breaks.

        type.FieldDefinitionList = new List<
            CFieldDefinitionDTO____________________________________<int>
        >
        {
            field
        };

Maybe it should space brace? Like this?

        type.FieldDefinitionList = new List<
            CFieldDefinitionDTO____________________________________<int>
        > { field };

        type.FieldDefinitionList = new List<
            CFieldDefinitionDTO____________________________________<int>
        > {
            someValue________________________________________________,
            someValue________________________________________________
        };

belav avatar Aug 23 '21 14:08 belav