csharpier
csharpier copied to clipboard
Generic List Initializer breaks poorly
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________________________________________________
};