Re: Questions about Coding Practices

Tech-Archive recommends: Speed Up your PC by fixing your registry



On Jul 14, 10:00 am, "Chakravarthy" <dskch...@xxxxxxx> wrote:
the trinary conditional operator compiles the entire statement before it
actually execute them. if there is any error in any of the statements it
will not execute the whole statement.

That's true of *all* C# code. The whole C# file is compiled before any
of it is executed.

It sounds like you're thinking of something like JavaScript.

Jon
.