C#C
C#3y ago
Bill

❔ What editorconfig setting would I use to force each property to a new line?

Which .editorconfig setting would I use to achieve the following:

For example, I would like Content, Source, and Sender to be on a new line?

context.Messages.Add(new Message
{
    Content = "Test", Source = "Discord", Sender = "Test"
});
Was this page helpful?