Rowan home > Reference > #if

#if, #elseif, #else: Conditional Execution

Module: ControlStructures
Syntax: #if cond1 { block1 } [ #elseif cond { block2 } ][ #else { block3 } ]
Errors: System.InvalidCastException, System.MissingMemberException.

Executes block1 if cond1 is true. The #if can be followed by any number of similar #elseif clauses, and an optional #else part.