C#C
C#3y ago
Bill

❔ EditorConfig Option to always go to new lines

Using this code as an example, which editorconfig option do I set to make each member always on a new line?

        // Convert the dictionary to a list of DTOs
        var responses = modelScores.Select(score => new AnalysisResponseDto
        {
            Model = xxx, Score = xxx
        }).ToList();
Was this page helpful?