THE #IF DIRECTIVE DOES NOT WORK CORRECTLY IN v0.2
Contents of this page:
#If directives in VB are used to produce compile time switches (eg to define different constants or functions). Although Python doesn't have this concept, any of the use cases for #If directives are easily handled by Python's conventional if statement at runtime. Consequently, the #If conversion is simply converted to the equivalant Python if.
VB | Python |
---|---|
|
|
There are no options specific to the If statement.