The thing to remember is that the C# compiler (i.e. the SGDK2 compiler) does not see any form of whitespace except in a few important places, inside: Quotes("HelloWorld" is not the same as "Hello World", Operators (+= is not the same as + =), numbers (17 is not the same as 1 7), and identifiers such as variable and function names. Any kind of whitespace anywhere else is just formatting for the programmer's convenience, including space, tab, and newline. This is what allows for amusingly shaped programs (Google: IOCCC)
The other thing to point out is that boolean opperations are a little confusing. OR runs the first check, and if true, does not run the second (because it doesn't need to). AND runs the first check, and if false, does not run the second (because it doesn't need to). In the reverse case, it will run the second check, even if there are four newlines and a paragraph of comments between the two conditions.