C#C
C#4y ago
Vargonian

Should I use && and || operators at the end of a line or beginning? [Answered]

if (a
c)
{
}

vs.

if (a
c)
{
}

Which is the more accepted standard? I just want to stop questioning myself every time I encounter this. Thanks.
Was this page helpful?